Skip to content

Instantly share code, notes, and snippets.

@aaronjgreenberg
Created August 31, 2013 02:47
Show Gist options
  • Save aaronjgreenberg/6395942 to your computer and use it in GitHub Desktop.
Save aaronjgreenberg/6395942 to your computer and use it in GitHub Desktop.
How I completely delete a program from my Mac.

Gotta have some guts to do this one, but:

find / 2>/dev/null | grep -i Silverlight | sudo xargs rm -rf
@aaronjgreenberg
Copy link
Author

Oh yeah, you can replace "Silverlight" with the name of whatever application you're trying to delete. Hopefully it doesn't include /Users in the name...!

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