Skip to content

Instantly share code, notes, and snippets.

@noherczeg
Created November 27, 2020 08:28
Show Gist options
  • Save noherczeg/685cc430844da4de9a672bc2531ce76a to your computer and use it in GitHub Desktop.
Save noherczeg/685cc430844da4de9a672bc2531ce76a to your computer and use it in GitHub Desktop.
ps pid kill
ps -ef | grep "KEYWORD" | awk '{print $2}'
alias killps="kill -9 `ps -ef | grep '[k]eyword' | awk '{print $2}'`"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment