Created
November 24, 2021 22:19
-
-
Save macmule/600257558e398350fec17c35e89281e8 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/ | |
| # | |
| #################################################################################################### | |
| #Check to see if Adobe Unit Types is installed | |
| if [ -d /Library/ScriptingAdditions/Adobe\ Unit\ Types.osax ]; | |
| then | |
| result="$(defaults read /Library/ScriptingAdditions/Adobe\ Unit\ Types.osax/Contents/Info CFBundleVersion)" | |
| 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