Skip to content

Instantly share code, notes, and snippets.

@gabhi
Created March 20, 2016 22:15
Show Gist options
  • Save gabhi/b0c106661d126393353b to your computer and use it in GitHub Desktop.
Save gabhi/b0c106661d126393353b to your computer and use it in GitHub Desktop.
search pid and kill process script
ps -ef | grep cassandra | grep -v grep | awk '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment