Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to pipe standard output of a program while keeping it on screen.

With a simple example (echo use here is just for illustration purpose) :

$ echo 'ee' | foo
ee <- the output I would like to see

I know tee could copy stdout to file but that's not what I want.
$ echo 'ee' | tee output.txt | foo

I tried
$ echo 'ee' | tee /dev/stdout | foo but it does not work since tee output to /dev/stdout is piped to foo

share|improve this question

3 Answers

up vote 12 down vote accepted
echo 'ee' | tee /dev/tty | foo
share|improve this answer
Doesn't seem to work on my machine... – static_rtti Apr 15 '11 at 13:33
Any hint about what your machine might be ? This should work on most if not all Unix and Unix like OSes. – jlliagre Apr 15 '11 at 13:36
works on Mac and Linux (verified with Red Hat) – Hai Vu Apr 15 '11 at 16:22
I use Arch linux. – static_rtti Apr 16 '11 at 15:26
Interesting. Does it works after you run mknod -m 666 /dev/tty c 5 0 ? – jlliagre Apr 16 '11 at 21:29

Another thing to try is:

echo 'ee' | tee >(foo)

The >(foo) is a process substitution.

share|improve this answer

Try:

$ echo 'ee' | tee /dev/stderr | foo

If using stderr is an option, of course.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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