shopt(shell选项)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shopt(shell选项)相关的知识,希望对你有一定的参考价值。
//for options available, see:http://www.ss64.com/bash/shopt.html
// display all shell options with their status shopt // display only set (on) options shopt -s //display only unset (off) options shopt -u //set (turn on) an option shopt -s foo //unset (turn off) an option shopt -u bar
以上是关于shopt(shell选项)的主要内容,如果未能解决你的问题,请参考以下文章
Linux 命令(228)—— shopt 命令(builtin)