What command do you use to start a process in the background with a script file?
<scriptfile> <argument> &
</argument></scriptfile>
What command do you use to list existing jobs?
jobs
What command do you use to stop a process?
kill -SIGSTOP %1
What command do you use to terminate a process?
kill -SIGTERM %2
What command do you use to resume a process?
kill -SIGCONT %1
What command do you use to ist all current running processes and refine the search?
ps -ef | grep <argument></argument>
What command do you use to terminate a process?
pkill -SIGTERM <argument></argument>