What output will the command seq 10 produce?



A. A continuous stream of numbers increasing in increments of 10 until stopped.
B. The numbers 1 through 10 with one number per line.
C. The numbers 0 through 9 with one number per line.
D. The number 10 to standard output.

題解

「seq」指令可以輸出連續的數字。如果不指定由哪個數字開頭,則會以「1」開始。每個數字之間預設會使用換行字元進行分隔。所以答案是選項B。