Created
November 24, 2021 18:32
-
-
Save dalekurt/dd403e249c67876de089ed1028cd9ad9 to your computer and use it in GitHub Desktop.
MacOS Update Script
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/bash | |
# Requirements: | |
# - homebrew: https://brew.sh/ | |
# - homebrew tap: buo/cask-upgrade - https://github.com/buo/homebrew-cask-upgrade | |
# - homebrew mas (Mac App Store command-line interface - https://github.com/mas-cli/mas) | |
# Update, upgrade all and cleanup | |
brew update && brew upgrade && brew cu --all --yes --cleanup && mas upgrade && brew cleanup | |
# Dump all taps, apps, casks and mac apps into ~/Brewfile | |
brew bundle dump --force --describe --file=~/Brewfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment