Skip to content

Instantly share code, notes, and snippets.

@zaki-yama
Created January 5, 2015 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zaki-yama/febaafc73263719ba65c to your computer and use it in GitHub Desktop.
Save zaki-yama/febaafc73263719ba65c to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ -e Brewfile ]; then
echo "Brewfile already exists. Please rename or remove it."
exit
fi
for i in $(brew list)
do
echo "install $i"
echo "install $i" >>Brewfile
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment