Skip to content

Instantly share code, notes, and snippets.

@alexander-ae
Created April 7, 2016 15:53
Show Gist options
  • Save alexander-ae/6c2e924e82961f4d339087ec478daa99 to your computer and use it in GitHub Desktop.
Save alexander-ae/6c2e924e82961f4d339087ec478daa99 to your computer and use it in GitHub Desktop.
kill all process by pattern
ps -ef | grep myProcessName | 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