Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you want to be very thorough and have tee also handle strderr (standard error) and ensure it stays on screen,

Warning

I have yet to personally try this.

Code Block
languagebash
command > >(tee stdout.log) 2> >(tee stderr.log >&2)

...