There are new commands in Bash 4: checkjobs and autocd. However, I did not find documentation for them at

man bash

I run unsuccessfully

{checkjobs,autocd}

I found the following in release notes

 There is a new `checkjobs` option that causes the shell to check for and
 report any running or stopped jobs at exit

and

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.

How can you use autocd and checkjobs?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

autocd and checkjobs are not commands, but rather, they are options.

They can be set by using the shopt built-in.

Example:

shopt -s autocd

and

shopt -s checkjobs

or

shopt -s autocd checkjobs

to set both.

link|improve this answer
Thank you for your answer! – Masi Apr 27 '09 at 14:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.