Skip to content

Instantly share code, notes, and snippets.

@flammable
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save flammable/2ea2008d7b479bac10d5 to your computer and use it in GitHub Desktop.

Select an option

Save flammable/2ea2008d7b479bac10d5 to your computer and use it in GitHub Desktop.
#!/bin/sh
rm="/bin/rm"
PDFPLUGIN1="/Library/Internet Plug-Ins/AdobePDFViewer.plugin"
PDFPLUGIN2="/Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin"
DISABLEDPLUGINS="/Library/Internet Plug-Ins (Disabled)"
${rm} -rf "${PDFPLUGIN1}"
${rm} -rf "${PDFPLUGIN2}"
${rm} -rf "${DISABLEDPLUGINS}"
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment