Oct 21, 2004 #1 johngiggs Technical User Oct 30, 2002 492 US In ksh I can do the following: exec 3> /tmp/tstfile print -u3 'TEST' exec 3<&- which will open /tmp/tstfile and print the string TEST. What is the equivalent (if any) in bash? Thanks, John
In ksh I can do the following: exec 3> /tmp/tstfile print -u3 'TEST' exec 3<&- which will open /tmp/tstfile and print the string TEST. What is the equivalent (if any) in bash? Thanks, John
Oct 21, 2004 1 #2 ericbrunson Technical User Jan 9, 2004 2,092 US exec 3> /tmp/tstfile echo >&3 'TEST' exec 3<&- Upvote 0 Downvote
Oct 22, 2004 Thread starter #3 johngiggs Technical User Oct 30, 2002 492 US Thanks, ericbrunson!! That worked. Have a star!! John Upvote 0 Downvote