vote up 5 vote down star

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:

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

Except when the line executes, I want to see this on standard out:

hey hey, we're the monkees
flag

63% accept rate

3 Answers

vote up 20 vote down check
echo "hey hey, we're the monkees" | tee /dev/tty | gzip --stdout > my_log.gz
link|flag
A_w_e_s_o_m_e. Thank you. – Ross Rogers Feb 20 at 19:54
What's /dev/tty doing there? The original question wanted the output on standard output, not necessarily on the terminal. – Gareth Rees Feb 20 at 20:29
/dev/tty is a synonym for the current terminal. The questioner used "standard out" in the customary manner to mean the the current terminal, rather than a more strict definition of the term. – Paul Tomblin Feb 20 at 20:41
If it were indeed customary to use "standard output" to mean "current terminal", then that would be a custom likely to lead to much confusion! For this question, bash has /dev/stdout. – Gareth Rees Feb 20 at 21:11
Under what circumstances would /dev/tty not produce the desired outcome where /dev/stdout would? – Paul Tomblin Feb 20 at 21:13
show 1 more comment
vote up 12 vote down

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.

link|flag
Cool, I'm learning something myself here. Can you elaborate on what is happening there? – Paul Dixon Feb 20 at 20:08
I'll edit my post. – greyfade Feb 20 at 20:09
if I read it right, instead of given a file to tee, you've got it sending the copy as input to bracketed expression which writes the gzip output to another file. The uncompressed data leaves tee as normal on stdout – Paul Dixon Feb 20 at 20:14
thanks for the edit, appreciate the extra info! Never knew about that FIFO syntax. – Paul Dixon Feb 20 at 20:15
It came as a shock to me when I first learned it. But it lets you get away with very complex redirections, with several programs operating on the same input simultaneously. Of course, you can also do mkfifo by hand and run all of these commands in different consoles if you need to. – greyfade Feb 20 at 20:17
show 2 more comments
vote up 10 vote down

Have a nice cup of tee!

The tee command copies standard input to standard output and also to any files given as arguments. This is useful when you want not only to send some data down a pipe, but also to save a copy

As I'm having a slow afternoon, here's some gloriously illustrative ascii-art...

           +-----+                   +---+                  +-----+  
stdin ->   |cmd 1|    -> stdout ->   |tee|   ->  stdout  -> |cmd 2|
           +-----+                   +---+                  +-----+
                                       |
                                       v
                                     file

As greyfade demonstrates in another answer the 'file' need not be a regular file, but could be FIFO letting you pipe that tee'd output into a third command.

           +-----+                   +---+                  +-----+  
stdin ->   |cmd 1|    -> stdout ->   |tee|   ->  stdout  -> |cmd 2|
           +-----+                   +---+                  +-----+
                                       |
                                       v
                                     FIFO
                                       |
                                       v
                                    +-----+
                                    |cmd 3|
                                    +-----+
link|flag
But I want to gzip the intermediary file on the fly. Is that possible only using tee? – Ross Rogers Feb 20 at 19:55
yes, the other paul wrote a nice succinct answer while I messed about with an ascii art diagram :) – Paul Dixon Feb 20 at 19:59
But +1 for the excellent explanation. – Paul Tomblin Feb 20 at 20:00
:-P I'm familiar with tee'ing to a file like you're describing. I just don't know how to gzip that file. if i do "echo foo | tee bar.log", I don't know how to make tee gzip 'bar.log', aside from the solution Paul Tomblin posted. – Ross Rogers Feb 20 at 20:01
1  
greyfade's excellent answer shows how you can do what you like with the tee'd output. – Paul Dixon Feb 20 at 20:16
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.