Job Control
Job control lets you suspend _lot of jobs and then bring them into foreground.
Ctrl-Z takes the job into background...
But you can get it back by 'fg %n' where n is the ID of the job.
$ jobs
[1]- Stopped ./trace.sh
[2]+ Stopped ./trace.sh
$ fg %2
Coming soon are the traps in bash..beware..:)
Ctrl-Z takes the job into background...
But you can get it back by 'fg %n' where n is the ID of the job.
$ jobs
[1]- Stopped ./trace.sh
[2]+ Stopped ./trace.sh
$ fg %2
Coming soon are the traps in bash..beware..:)
0 Comments:
Post a Comment
<< Home