UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: Reference: aliasChapter 5
The C Shell
Next: Reference: break
 

bg

bg [jobIDs]

Put the current job or the jobIDs in the background. See the earlier section "Job Control."

Example

To place a time-consuming process in the background, you might begin with:

4% nroff -ms report | col > report.txt
CTRL-Z

and then issue any one of the following:

5% bg
5% bg %         Current job
5% bg %1        Job number 1
5% bg %nr       Match initial string nroff
5% % &


Previous: Reference: aliasUNIX in a Nutshell: System V EditionNext: Reference: break
Reference: aliasBook IndexReference: break

The UNIX CD Bookshelf NavigationThe UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System