2011-09-05 12:19:31 -06:00
|
|
|
|
# Make sure we’re 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 "Don’t 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
|
2014-04-14 23:26:13 -06:00
|
|
|
|
brew install scala
|
|
|
|
|
brew install sbt
|
2013-09-30 23:21:02 -06:00
|
|
|
|
brew install greadlink
|
|
|
|
|
|
2011-09-05 12:19:31 -06:00
|
|
|
|
# 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
|
2013-11-22 11:52:22 -07:00
|
|
|
|
brew install netcat
|
|
|
|
|
brew install reattach-to-user-namespace
|
2014-04-14 00:51:26 -06:00
|
|
|
|
brew install daemonize
|
|
|
|
|
ln -s /usr/local/Cellar/daemonize/1.7.4/sbin/daemonize /usr/local/bin/daemonize
|
2013-11-22 11:52:22 -07:00
|
|
|
|
brew install ngrep
|
2014-04-20 01:15:35 -06:00
|
|
|
|
brew install watch
|
|
|
|
|
brew install gist
|
2011-09-05 12:19:31 -06:00
|
|
|
|
|
|
|
|
|
# Remove outdated versions from the cellar
|
2013-03-17 02:22:39 -06:00
|
|
|
|
brew cleanup
|