What is the output of the following command?
echo "Hello World" | tr -d aieou
A.
Hello World
B.
eoo
C.
Hll Wrld
D.
eoo Hll Wrld
題解
「tr」指令可以取代輸入字串中的某些字元。加上「-d」參數表示刪除找到的字元。
所以題目的指令會把「Hello World」的母音去除,變成「Hll Wrld」。
What is the output of the following command?
A.
B.
C.
D.
「tr」指令可以取代輸入字串中的某些字元。加上「-d」參數表示刪除找到的字元。
所以題目的指令會把「Hello World」的母音去除,變成「Hll Wrld」。