Skip to content

Instantly share code, notes, and snippets.

@macmule
Created November 21, 2021 19:16
Show Gist options
  • Select an option

  • Save macmule/22ba2cec16f3e97a0cb4e5cbccb35234 to your computer and use it in GitHub Desktop.

Select an option

Save macmule/22ba2cec16f3e97a0cb4e5cbccb35234 to your computer and use it in GitHub Desktop.
#!/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