-
-
Save flammable/2ea2008d7b479bac10d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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