Created
February 10, 2015 18:00
-
-
Save Ivlyth/db20b30891a7dbca7701 to your computer and use it in GitHub Desktop.
kill multi processes use ps/awk/kill
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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