vote up 4 vote down star
1

In bash, calling foo would display any output from that command on the stdout.

Calling foo > output would redirect any output from that command to the file specified (in this case 'output').

Is there a way to redirect output to a file and have it display on stdout?

flag

74% accept rate

3 Answers

vote up 16 vote down check

The command you want is named tee

ls -lR / | tee output.file

link|flag
If OP wants "all output" to be redirected, you'll also need to grab stderr: "ls -lR / 2>&1 | tee output.file" – Alabaster Codify Jan 12 at 21:53
vote up 0 vote down

tee is perfect for this, but this will also do the job

ls -lr / > output | cat output

link|flag
That's an error if output doesn't already exist and it doesn't do what you want if it does, overall it is nonsensical. Perhaps you meant ";" instead of "|" ? – Robert Gamble Jan 7 at 3:24
vote up 1 vote down

'tail -f output' should work.

link|flag

Your Answer

Get an OpenID
or

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