Skip to content

Instantly share code, notes, and snippets.

@Ivlyth
Created February 10, 2015 18:00
Show Gist options
  • Save Ivlyth/db20b30891a7dbca7701 to your computer and use it in GitHub Desktop.
Save Ivlyth/db20b30891a7dbca7701 to your computer and use it in GitHub Desktop.
kill multi processes use ps/awk/kill
ps -ef | grep curl | grep -v grep | awk -F ' ' '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment