Created
April 6, 2016 02:49
-
-
Save keif/c17b763139c51416ce3273a1284f0924 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
binaries=( | |
ack | |
# Install Bash 4 | |
bash | |
bash-completion | |
# Install GNU core utilities (those that come with OS X are outdated) | |
coreutils | |
ffmpeg | |
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed | |
findutils | |
git | |
graphicsmagick | |
# Install more recent versions of some OS X tools | |
homebrew/dupes/grep | |
# homebrew/fuse/sshfs | |
Caskroom/cask/osxfuse | |
hub | |
mongodb | |
nvm | |
python | |
rename | |
trash | |
tree | |
webkit2png | |
zopfli | |
) | |
echo "Installing binaries..." | |
brew tap homebrew/dupes | |
brew tap homebrew/fuse | |
brew install ${binaries[@]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment