Created
November 21, 2021 19:16
-
-
Save macmule/22ba2cec16f3e97a0cb4e5cbccb35234 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 | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| # Checks to see if the plugin exists | |
| if [ -e /Library/Internet\ Plug-Ins/Silverlight.plugin ]; | |
| then | |
| result="$(defaults read /Library/Internet\ Plug-Ins/Silverlight.plugin/Contents/Info SilverlightVersion)" | |
| echo "$result" | |
| else | |
| echo "Not installed" | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment