show/hide this revision's text 3 added links, hope that's OK

Another way (assuming Bash):

echo "hey hey, we're the monkees" | tee >(gzip --stdout > my_log.gz)

The admittedly strange >() syntax basically does the following:

  • Create new FIFO (usually something in /tmp/)
  • Execute command inside () and bind the FIFO to stdin on that subcommand
  • Return FIFO filename to command line.

What tee ends up seeing, then, is something like:

tee /tmp/arjhaiX4

All gzip sees is its standard input.

See man bash for details. It's in the section on redirection.

show/hide this revision's text 2 added 564 characters in body

Another way (assuming Bash):

echo "hey hey, we're the monkees" | tee >(gzip --stdout > my_log.gz)

The admittedly strange >() syntax basically does the following:

  • Create new FIFO (usually something in /tmp/)
  • Execute command inside () and bind the FIFO to stdin on that subcommand
  • Return FIFO filename to command line.

What tee ends up seeing, then, is something like:

tee /tmp/arjhaiX4

All gzip sees is its standard input.

See man bash for details. It's in the section on redirection.

show/hide this revision's text 1

Another way (assuming Bash):

echo "hey hey, we're the monkees" | tee >(gzip --stdout > my_log.gz)