in Linux/shell, how can I bring background jobs to foreground and vice versa?
|
feedback
|
migrated from stackoverflow.com Dec 14 '09 at 20:17
This question came from our site for professional and enthusiast programmers.
|
Did you use ctrl+z to send it to the background? If so, you can bring it back to the front with the command
To get a list of all the background jobs, use
| ||||
|
feedback
|
|
if you have a list of backgrounded jobs (as seen with the 'jobs' command, you can pick a particular one with
where number = job number e.g.
| |||
|
feedback
|