2

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?

4

1 回答 1

5

autocdandcheckjobs不是命令,而是选项。

它们可以使用shopt内置的.

例子:

shopt -s autocd

shopt -s checkjobs

或者

shopt -s autocd checkjobs

设置两者。

于 2009-04-27T14:25:22.470 回答