mirror of
https://github.com/cheat/cheat.git
synced 2026-03-28 05:33:33 +01:00
6 lines
100 B
Plaintext
6 lines
100 B
Plaintext
# Kill a process gracefully
|
|
kill -15 <process id>
|
|
|
|
# Kill a process forcefully
|
|
kill -9 <process id>
|