Kill Processes Flashcards
1
Q
What command start processes in the background?
A
<script> <arguments> & </script>
2
Q
What command list existing jobs?
A
jobs
3
Q
What command stops a process from running?
A
kill -SIGSTOP %<#>
4
Q
What command is used to terminate a process from running the background?
A
kill -SIGTERM %<#>
5
Q
What command resumes are background process?
A
kill -SIGCONT %<#>
6
Q
What command list all currently running processes?
A
ps -ef