What output will the following command produce?
seq 1 5 20
A.
1
6
11
16
6
11
16
B.
1
5
10
15
5
10
15
C.
1
2
3
4
2
3
4
D.
2
3
4
5
3
4
5
E.
5
10
15
20
10
15
20
題解
「seq」指令可以輸出連續的數字。「1 5 20」作為參數,表示從1到20,每次加5。所以答案是選項A。
What output will the following command produce?
A.
B.
C.
D.
E.
「seq」指令可以輸出連續的數字。「1 5 20」作為參數,表示從1到20,每次加5。所以答案是選項A。