Last updated 2 years ago
Was this helpful?
You can use to list the suspended process. Take the example. Start with a process:
$ sleep 3000
Then you suspend the process:
^Z [1]+ Stopped sleep 3000
You can list the process:
$ jobs [1]+ Stopped sleep 3000
and bring it back to the foreground:
$ fg %1 sleep 3000
The %1 corresponds to the [1] listed with the jobs command.
%1
[1]
jobs
ALT + d