Node:Job control, Next:Current directory, Previous:Running programs, Up:System interface
If you run Q interactively, you can run multiple jobs at once.
| fg [job] | Macro |
| Move the specified job into the foreground. |
| bg [job] | Macro |
| Continue executing the specified job in the background. |
| jobs | Macro |
| List current jobs |
You can interrupt the current forground job with ^Z or kill it with ^C.
| command bg | Macro |
Execute the current command in the background.
(Most shells use command& syntax for this.)
|