dotfiles/.brew

33 lines
778 B
Plaintext
Raw Normal View History

2011-09-05 12:19:31 -06:00
#!/bin/bash
# Make sure were using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
echo "Dont forget to add $(brew --prefix coreutils)/libexec/gnubin to \$PATH."
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
# Install Bash 4
brew install bash
# Install wget with IRI support
brew install wget --enable-iri
# Install more recent versions of some OS X tools
brew tap homebrew/dupes
brew install homebrew/dupes/grep
# Install everything else
2013-03-17 03:33:15 -06:00
brew install emacs
brew install git
2013-03-17 02:22:39 -06:00
brew install tmux
brew install nmap
brew install readline
2011-09-05 12:19:31 -06:00
# Remove outdated versions from the cellar
2013-03-17 02:22:39 -06:00
brew cleanup