When given the following command line. echo “foo bar” | tee bar | cat Which of the following
output is created?
A.
cat
B.
foo bar
C.
tee bar
D.
bar
E.
foo
When given the following command line. echo “foo bar” | tee bar | cat Which of the following
output is created?
When given the following command line. echo “foo bar” | tee bar | cat Which of the following
output is created?
A.
cat
B.
foo bar
C.
tee bar
D.
bar
E.
foo
the answer is D – try it on ubuntu –
plug it in and you get a file bar,
with the contents “foo bar”
While this is true, the echo line displays foo bar, which may be what this is specifically asking.
I just tried it and the output “foo bar” was created (with quotes)