无法在Bash 4中使用Checkjobs和Autocd

时间:2009-04-27 14:13:53

标签: bash bash4

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?

1 个答案:

答案 0 :(得分:5)

autocdcheckjobs不是命令,而是选项。

可以使用shopt built-in设置它们。

示例:

shopt -s autocd

shopt -s checkjobs

shopt -s autocd checkjobs

设置两者。