How can I split an output of a command to two terminals? one will get stdout and the other will get stderr. The best I could do is:
On first terminal:
bash
command args 2> errors
and on second terminal
tcsh
while 1
cat errors
sleep 1
end
This works ok but it prints the errors over and over again every time, is there any better way to redirect the errors to another terminal?
