What command start processes in the background?
<script> <arguments> & </script>
What command list existing jobs?
jobs
What command stops a process from running?
kill -SIGSTOP %<#>
What command is used to terminate a process from running the background?
kill -SIGTERM %<#>
What command resumes are background process?
kill -SIGCONT %<#>
What command list all currently running processes?
ps -ef