Terminal
You can use jobs
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.
Delete word in front of pointer
ALT + d
Last updated
Was this helpful?