单选题What is the most likely problem with this script () VAR=1 ((VAR=$VAR+1)) while [ $VAR -It 10 ] do echo $VAR doneA
#!/bin/ksh line is missingB
Variable name VAR is not properly initializedC
Loop variable is not incremented inside the loopD
Re
题目
单选题
What is the most likely problem with this script () VAR=1 ((VAR=$VAR+1)) while [ $VAR -It 10 ] do echo $VAR done