Bash 4中有新选项:checkjobs和autocd。 但是,我没有在
找到他们的文档man bash
我运行不成功
{checkjobs,autocd}
我在发行说明中找到了以下内容
There is a new `checkjobs` option that causes the shell to check for and
report any running or stopped jobs at exit
和
There is a new `autocd` option that, when enabled, causes bash to attempt
to `cd` to a directory name that is supplied as the first word of a
simple command.
如何使用autocd和checkjobs?
答案 0 :(得分:5)
autocd
和checkjobs
不是命令,而是选项。
可以使用shopt
built-in设置它们。
示例:
shopt -s autocd
和
shopt -s checkjobs
或
shopt -s autocd checkjobs
设置两者。