Resuming a suspended process |
|
bg command can be used to resume a
suspended process in the
background. When used with no arguments,
the bg command will continue the last suspended job.
To resume
job number 2, you would type the command:
% bg %2
fg command resumes a suspended process in the
foreground.
For example, to resume job 1 in the foreground, you would type
this command:
% fg %1
%1 would resume job 1 in the foreground. This
command:
% %2&
would resume job 2 in the background, because it ends with
an ampersand.
|
John Shipman, john@nmt.edu
Last updated: 1995/12/04 19:39:34 UT URL: http://www.nmt.edu/tcc/help/unix/fg-bg.html |
|