Login using Social Account
     Continue with GoogleLogin using your credentials
In Unix, a job is a group of one or more processes. One of the ways of creating job is when we put a process in the background.
You can see the list of jobs by using the command:
jobs
The number that you see in square brackets [] is the job id. This is different from the process id. To bring a process to foreground, you can use
fg %jobid
or simply
fg jobid
If jobs command lists following:
[1]- Stopped tail -f mycmd.sh [2]+ Stopped top [3] Running sleep 1000 &
Which command will bring the "top" to the foreground?
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Loading comments...