Skip to content

Instantly share code, notes, and snippets.

@mshirdel
Last active April 27, 2016 10:19
Show Gist options
  • Save mshirdel/f4cc06b37edde2cb9d63aaa77d3e673f to your computer and use it in GitHub Desktop.
Save mshirdel/f4cc06b37edde2cb9d63aaa77d3e673f 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 '[p]ython csp_build.py' | awk '{print $2}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment