Created
September 23, 2019 07:46
-
-
Save bbock/2804f8a1d0ef3ac0e32f70d8a5d8f52e to your computer and use it in GitHub Desktop.
find all homebrew casks that to application-side auto updates
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
for cask in $(brew cask list); do brew cask cat $cask | grep -q 'auto_updates true' && echo $cask ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment