Created
October 14, 2022 17:52
-
-
Save soundsnw/f0d997dc696ba09a3f26192a017eff49 to your computer and use it in GitHub Desktop.
This file contains 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/zsh | |
export PATH=/usr/bin:/bin:/usr/sbin:sbin | |
recommendedUpdates=$(defaults read /Library/Preferences/com.apple.SoftwareUpdate.plist RecommendedUpdates | wc -l | awk '{print $1}') | |
if [[ recommendedUpdates -gt 2 ]]; then | |
echo "<result>True</result>" | |
else | |
echo "<result>False</result>" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment