3

Some programs output very detailed data, for readability I use awk to filter them.

./output_many_things | awk '{print $1 "\t" $2}'

But I don't want to miss anything. Could I redirect the complete output to a log file, but output the awked data to screen?

Lai Yu-Hsuan
  • 133
  • 4

1 Answers1

4

Absolutely. Stick tee in the pipeline.

Ignacio Vazquez-Abrams
  • 44,857
  • 7
  • 93
  • 100