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

題解

「echo」指令可以輸出從參數傳入的文字至輸出串流中,「tee」指令可以同時將輸入的文字輸出至輸出串流和檔案串流中,「cat」指令可以輸出從輸入串流輸入的文字至輸出串流。

所以這題指令執行後,會將「foo bar」輸出到標準輸出串流和「bar」檔案中。