show/hide this revision's text 2 fixed + now it's community wiki

You can redirect stderr to stdout and the stdout into a file:

some_command 1>file.log 2>&1
>file.log

See http://tldp.org/LDP/abs/html/io-redirection.html

EDIT: changed the order as pointed out in the comments

    Post Made Community Wiki by Community
show/hide this revision's text 1

You can redirect stderr to stdout and the stdout into a file:

some_command 2>&1 >file.log

See http://tldp.org/LDP/abs/html/io-redirection.html