How can I gzip standard in to a file and also print standard in to standard out?

前端 未结 4 1097
天命终不由人
天命终不由人 2020-12-14 06:28

I want to execute a command, have the output of that command get gzip\'d on the fly, and also echo/tee out the output of that command.

i.e., something like:

4条回答
  •  轮回少年
    2020-12-14 07:04

    Another way (assuming a shell like bash or zsh):

    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.

    For Bash, see man bash for details. It's in the section on redirection. For Zsh, see man zshexpn under the heading "Process Substitution."

    As far as I can tell, the Korn Shell, variants of the classic Bourne Shell (including ash and dash), and the C Shell don't support this syntax.

提交回复
热议问题