I want to redirect both stdout and stderr of a process to a single file. How do I do that in Bash?
For tcsh, I have to use the following command :
command >& file
If use command &> file , it will give "Invalid null command" error.
command &> file