41 lines
1.0 KiB
Bash
Raw Normal View History

2011-09-05 20:19:31 +02:00
# 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
2014-04-14 22:26:13 -07:00
brew install scala
brew install sbt
2013-09-30 22:21:02 -07:00
brew install greadlink
2011-09-05 20:19:31 +02: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 02:33:15 -07:00
brew install emacs
brew install git
2013-03-17 01:22:39 -07:00
brew install tmux
brew install nmap
brew install readline
brew install netcat
brew install reattach-to-user-namespace
2014-04-13 23:51:26 -07:00
brew install daemonize
ln -s /usr/local/Cellar/daemonize/1.7.4/sbin/daemonize /usr/local/bin/daemonize
brew install ngrep
brew install watch
brew install gist
2011-09-05 20:19:31 +02:00
# Remove outdated versions from the cellar
2013-03-17 01:22:39 -07:00
brew cleanup