Skip to content

Instantly share code, notes, and snippets.

@rmanly
Last active December 17, 2015 03:09
Show Gist options
  • Save rmanly/5541351 to your computer and use it in GitHub Desktop.
Save rmanly/5541351 to your computer and use it in GitHub Desktop.
Use Spotlight to find Skype and delete it.
while read -r -d $'\0' skype; do
rm -rf "${skype}"
done < <(mdfind kMDItemCFBundleIdentifier = "com.skype.skype" -0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment