Skip to content

Instantly share code, notes, and snippets.

@nickpack
Created May 22, 2013 14:24
Show Gist options
  • Save nickpack/5627921 to your computer and use it in GitHub Desktop.
Save nickpack/5627921 to your computer and use it in GitHub Desktop.
Loop through `brew list` output and install packages individually
#!/bin/bash
while read line
do
brew install "$line"
done < /Volumes/External/work-brew
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment