Consider the following command in Unix:

echo 0123456789 | cat >/tmp/foo &> /tmp/bar

The echo is sent to /tmp/bar.

However, what I really want is to redirect the stdout and stderr output of the cat command and not take its input.

What is the proper syntax to do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Never mind, I figured it out:

echo 0123456789 | (cat >/tmp/foo) &> /tmp/bar
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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