On Fri, Sep 06, 2002 at 02:24:49PM +1000, Daniel Harper wrote: > I am trying to redirect and append stdout and stderr to a file. > I gave &>> a try put that doesn't work. HELP!
the "usual" way is: echo "fred" >> /tmp/log 2>&1 (there's plenty of other variations though) Dave. -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
