Bash redirect to std error & out to different files

To redirect standard error and output to different files, you can use grouping:

% (cat myfile > myout) >& myerror

Comments

Popular posts from this blog

Vim vi how to reload a file your editing