May 1, 2002 #1 U123 Programmer May 23, 2008 2 IN Can any one tell me how to start again a "STOPPED JOB" from its job number.
May 1, 2002 #2 gheist Technical User Apr 5, 2002 467 LV 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 Upvote 0 Downvote
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
May 7, 2002 #3 AIXSPadmin MIS May 3, 2002 633 US 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. Upvote 0 Downvote
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.