I'm just trying to make a simple script which involves the command "jobs", but it doesnt seem to work, it doesn't even get recogniced by "man"... No idea what's going on :S.
|
|
|||
|
|
|
You need to be running an interactive shell for the You should be able to use the |
|||
|
|
|
Install the POSIX man pages. The package should be named something like "manpages-posix-dev" or similar. |
|||
|
|
|
I don't think there's a linux / unix command called Both If it's a local binary, check your |
|||
|
|
|
|||
|
|

jobsis a shell builtin command -man bashto read about it. How is it "not working"? What are you expecting vs. what you are observing? – twalberg Dec 5 '12 at 17:59jobswill show you the background and suspended jobs started by this instance of the shell. So if your script doesn't start anything in the background (i.e.some_command &), there will be no output fromjobs. It won't report things that were started by the parent shell. – twalberg Dec 5 '12 at 18:05