在bash中,export的命令作用是什么?
A、在子Shell中运行命令;
B、在子Shell中使用命令历史记录
C、为其他应用程序设置环境变量(全局变量);
D、提供nfs分区给网络中的其他系统使用;
使用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;