• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

outputting error and standard to same file

Red Squirrel

No Lifer
Is there a way to append stderr and stdout to same file? I can't figure out how. I tried

command 1>> 2>> file
command &>> file
command >>& file

and many other combinations, no luck.
 
First hit on google says this and it worked fine here in XP cmd.

command > file 2>&1 Redirect output and errors to one file
 
Back
Top