Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created March 27, 2014 16:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanksudo/a8e5241858f2c97dfc8f to your computer and use it in GitHub Desktop.
Save hanksudo/a8e5241858f2c97dfc8f to your computer and use it in GitHub Desktop.
Find and kill a process in one line using bash and regex
kill $(ps aux | grep 'process name with regex' | awk '{print $2}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment