Skip to content

Instantly share code, notes, and snippets.

@jakob-stoeck
Last active February 26, 2024 07:07
Show Gist options
  • Save jakob-stoeck/e591321e1b9ef1c48c8abff76cef600f to your computer and use it in GitHub Desktop.
Save jakob-stoeck/e591321e1b9ef1c48c8abff76cef600f to your computer and use it in GitHub Desktop.
homebrew parallel download and update
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