Linux shopt命令:切换变量控制可选的Shell行为的值。
Linux shopt命令 功能描述
使用shopt命令可以切换变量控制可选的Shell行为的值。如果不带选项,或使用-p选项,显示所有可设置的选项的列表。
Linux shopt命令 语法
shopt [选项] [可选名称]
命令中各选项的含义如下表所示。
Linux shopt命令 示例
显示所有的可选名称
[root@rhel ~]# shopt
autocd off
cdable_vars off
cdspell off
checkhash off
checkjobs off
checkwinsize on
cmdhist on
compat31 off
compat32 off
compat40 off
dirspell off
........................(省略)
显示autocd可选名称
[root@rhel ~]# shopt autocd
autocd off
启用autocd可选名称
[root@rhel ~]# shopt -s autocd
禁用autocd可选名称
[root@rhel ~]# shopt -u autocd