在bash中,使用循环for i in `seq 1 2 5`,每次循环时,i的值分别是多少()。
A. 1 2 3
B. 1 3 5
C. 1 3
D. 1
在bash中,使用循环for i in {0..3},每次循环时,i的值分别是多少()。
A. 0 2
B. 0 1 2
C. 0 1 2 3
D. 1 2 3
下列脚本的运行结果是():#!/bin/bashnumber=5until [ ${number} -gt 10 ]doif [ `expr ${number} % 3` -eq 0 ]thenecho $numberfilet number=number+1done
A. 6 9
B. 5 3
C. 5 10
D. 5 6 7 8 9 10
下列脚本的运行结果是():#!/bin/bashresult=0for i in 1 2 3 4dolet result=result+idoneecho $result
A. 10
B. 4
C. result+i
D. 报错