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

autocdcheckjobsはコマンドではなく、オプションです。

shopt組み込みのを使用して設定できます。

例:

shopt -s autocd

shopt -s checkjobs

また

shopt -s autocd checkjobs

両方を設定します。

于 2009-04-27T14:25:22.470 に答える