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.
