Skip to content

Instantly share code, notes, and snippets.

@thumphries
Created January 27, 2013 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thumphries/4648939 to your computer and use it in GitHub Desktop.
Save thumphries/4648939 to your computer and use it in GitHub Desktop.
cocoa kill - useful for killing Mac OS X GUI applications. (Use with care!)
#!/bin/sh
if [ -z $1 ]; then echo "$0: Please supply a label"; exit 1; fi
launchctl list | grep -i "$1" | cut -f1 | grep -ve "^-" | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment