Skip to content

Instantly share code, notes, and snippets.

@bbock
Created September 23, 2019 07:46
Show Gist options
  • Save bbock/2804f8a1d0ef3ac0e32f70d8a5d8f52e to your computer and use it in GitHub Desktop.
Save bbock/2804f8a1d0ef3ac0e32f70d8a5d8f52e to your computer and use it in GitHub Desktop.
find all homebrew casks that to application-side auto updates
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