You want to the command foo to take its input from the file foobar and send its output to the
program bar. Which of the following command lines will do this?
A.
foo < foobar | bar
B.
foo < foobar > bar
C.
foo | foobar > bar
D.
foo | bar < foobar
E.
foo > bar < foobar