Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

STOPPED JOBS

Status
Not open for further replies.

U123

Programmer
May 23, 2008
2
IN
Can any one tell me how to start again a "STOPPED JOB" from its job number.
 
csh::

^Z suspends foreground task
bg brings task to background
fg %3 brings task #3 to foreground
kill %8 kills task #8

your mileage may vary althogh this s called "job control" in your shells manual
 
jobs is the command to show which processes are suspended.

fg %[ID]
bg %[ID]
kill %[ID]

The above three commands are used to control jobs.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top