Last active
November 27, 2019 11:52
-
-
Save dhbradshaw/ca49a65d38b37c331055eae1b8b78250 to your computer and use it in GitHub Desktop.
pkill example: kill guake process
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Try listing the processes associated with a term, for example guake. | |
$ pgrep guake | |
8494 | |
# Kill guake processes without bothering looking at them. | |
$ pkill guake |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment