vote up 0 vote down star

Duplicate http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out

I'm trying to count the lines from a command and I'd also like to see the lines as they go by. My initial thought was to use the tee command:

complicated_command | tee - | wc -l

But that simply doubles the line count using GNU tee or copies output to a file named - on Solaris.

flag

69% accept rate
Exact duplicate stackoverflow.com/questions/570984/… – Paul Tomblin Feb 28 at 0:04
Ah. My searches failed to find that question. – Jon Ericson Feb 28 at 0:11
Searching is never perfect, especially with this sort of command. – Adam Davis Feb 28 at 0:17
Now we have a new set of keywords. ;-) – Jon Ericson Feb 28 at 0:18
I found it because I have the accepted answer on that one. – Paul Tomblin Feb 28 at 0:19
show 2 more comments

2 Answers

vote up 3 vote down check
complicated_command | tee /dev/tty | wc -l

But keep in mind that if you put it in a script and redirect the output, it won't do what you expect.

link|flag
Thanks. I wonder why I didn't know that /dev/tty points to my terminal name. Glad I asked since that reduces my code a bit. – Jon Ericson Feb 28 at 0:26
Yeah, /dev/tty is an alias for your current tty. It's very useful like that. – Paul Tomblin Feb 28 at 1:06
vote up 0 vote down

The solution is to tee to the console directly as opposed to STDOUT:

tty=`tty`
complicated_command | tee $tty | wc -l
link|flag

Your Answer

Get an OpenID
or

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