Skip to content

Instantly share code, notes, and snippets.

@twetzel
Created September 25, 2013 09:24
Show Gist options
  • Save twetzel/6697178 to your computer and use it in GitHub Desktop.
Save twetzel/6697178 to your computer and use it in GitHub Desktop.
pkill for mac
#!/bin/sh
for that in `ps acx | grep -i $1 | awk {'print $1'}`; do
kill $that;
done
@twetzel
Copy link
Author

twetzel commented Sep 25, 2013

dont know where I found this anymore .. so sorry cant tell an author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment