cheat-fork-echo/cheat/cheatsheets/kill

8 lines
142 B
Plaintext

# kill - Kills a process
# Kill gracefully
kill -15 [PID]
# Force kill (*Only use if -15 does not work first, this is dirty*)
kill -9 [PID]