69

Tip #248   Using FIFOs

If you want to tail the errors on another terminal, just push them to a fifo:

$ mkfifo cmderror

$ mycommand 2> cmderror


On your other terminal:

$ tail -f cmderror