6.2 File Redirection
>>& append stdout and stderr to file
|& command pipe stdout and stderr to command
To redirect stdout and stderr to two separate files you need to first redirect stdout in a sub-shell, as in:
% (command > out_file) >& err_file