Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Jan 162010
 

Save program output and error to different files

Answer:

Assume you are going to execute a program called foobar, and it emits to both the standard output and standard error. You want to save them into different files, try

# ./foobar 1> output.txt 2> error.txt

or simply

# ./foobar > output.txt 2> error.txt