diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-06-27 18:01:37 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-06-27 18:01:37 +0200 |
commit | d2eb82245be7a1fcf9d21be9e89c9497aae497af (patch) | |
tree | 719e9ed1f574891c87990efae9ee0e7763dd8daf | |
parent | 954ab965618446acda0629e3c60b656fdeff963a (diff) | |
download | dotfiles-d2eb82245be7a1fcf9d21be9e89c9497aae497af.tar.gz dotfiles-d2eb82245be7a1fcf9d21be9e89c9497aae497af.tar.bz2 dotfiles-d2eb82245be7a1fcf9d21be9e89c9497aae497af.zip |
.brew: Install GNU core utilities (those that come with OS X are outdated)
-rwxr-xr-x | .brew | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,9 +1,15 @@ +#!/bin/bash + # 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 wget with IRI support brew install wget --enable-iri @@ -15,6 +21,7 @@ brew install narwhal # Install more recent versions of some OS X tools brew tap homebrew/dupes brew install homebrew/dupes/grep + # These two formulae didn’t work well last time I tried them: #brew install homebrew/dupes/vim #brew install homebrew/dupes/screen |