show/hide this revision's text 2 Fixed redirect ordering after comment from liw.fi
bash your_script.sh 2>&1 1>file.log 2>&1

1>file.log instructs the shell to send STDOUT to the file file.log, and 2>&1 tells the shell it to redirect STDERR (file descriptor 2) to STDOUT (file descriptor 1).

Note: The order matters as liw.fi pointed out, and 2>&1 1>file.log instructs it to send STDOUT to the file file.log doesn't work.

show/hide this revision's text 1
bash your_script.sh 2>&1 1>file.log

2>&1 tells the shell to redirect STDERR (file descriptor 2) to STDOUT (file descriptor 1), and 1>file.log instructs it to send STDOUT to the file file.log.