使用grep命令搜索file中所有不包含“itcast”的文本行,则下列命令中正确的是。
A、grep -x "itcast" file;
B、grep -r "itcast" file;
C、grep -h "itcast" file;
D、grep -v "itcast" file;
下列选项中,哪一项不是Shell的合法循环结构。
A、until do done;
B、do until done;
C、for do done;
D、while do done;
下列选项中,哪一项不是Shell的合法判断结构。
A、if do done;
B、if then fi;
C、if ; then fi;
D、if then else fi;
关于Shell脚本,下列哪一项描述是错误的。
A、脚本第一行以“
B. !”开头,用来指定命令解释器;
C. B、source命令可以运行Shell脚本;
D. C、脚本中的注释使用“
E. ”符号标;
F. D、Shell脚本编写完毕就具有执行权限;