Oct 3, 2001 #1 CaKiwi Programmer Apr 8, 2001 1,294 US Does anyone know if it is possible to redirect only stderr to a file when using csh. I need the equivalent to the ksh command command 2> tmp.dat Thanks. CaKiwi
Does anyone know if it is possible to redirect only stderr to a file when using csh. I need the equivalent to the ksh command command 2> tmp.dat Thanks. CaKiwi
Oct 3, 2001 1 #2 tdatgod Programmer Jul 21, 2001 601 US set mytty = `tty` ( command > $mytty ) >&! tmp.dat Upvote 0 Downvote
Oct 3, 2001 Thread starter #3 CaKiwi Programmer Apr 8, 2001 1,294 US Thanks tdatgod, just what I needed. (They subject line should have said stderr not stdout, of course.) CaKiwi Upvote 0 Downvote
Thanks tdatgod, just what I needed. (They subject line should have said stderr not stdout, of course.) CaKiwi