Last active
February 26, 2024 07:07
-
-
Save jakob-stoeck/e591321e1b9ef1c48c8abff76cef600f to your computer and use it in GitHub Desktop.
homebrew parallel download and update
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
brew outdated | parallel --keep-order brew fetch --deps && brew upgrade | |
# without GNU parallel (output will be out of order): | |
brew outdated -q | xargs -L1 -P8 brew fetch --deps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment