Mar 31, 2004 #1 mar74 IS-IT--Management Aug 12, 2003 22 US On a SCO Unixware box, scripts are overwritting logfiles instead of appending to them. Even if I do: echo `date` > test echo foo >> test test only contains foo. I appreciate any help/insight anyone can provide.
On a SCO Unixware box, scripts are overwritting logfiles instead of appending to them. Even if I do: echo `date` > test echo foo >> test test only contains foo. I appreciate any help/insight anyone can provide.
Apr 6, 2004 1 #2 tb1254 Technical User Feb 17, 2004 29 US Try echo foo >> test 2>&1 It should work if not try a man on redirection Upvote 0 Downvote