Created
January 25, 2017 13:11
-
-
Save zouhir/34c131bce80c486f6647ea9df58631bf 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
#!/usr/bin/env bash | |
# /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# 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 macOS are outdated). | |
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`. | |
brew install coreutils | |
# Install some other useful utilities like `sponge`, `ts`, `pee`. | |
brew install moreutils | |
# Install `wget` with IRI support. | |
brew install wget --with-iri | |
# Install font tools. | |
brew tap bramstein/webfonttools | |
brew install sfnt2woff | |
brew install sfnt2woff-zopfli | |
brew install woff2 | |
# Install other useful binaries. | |
brew install ack | |
brew install git | |
brew install git-lfs | |
brew install imagemagick --with-webp | |
brew install lua | |
brew install lynx | |
brew install p7zip | |
brew install pigz | |
brew install pv | |
brew install rename | |
brew install rhino | |
brew install speedtest_cli | |
brew install ssh-copy-id | |
brew install testssl | |
brew install tree | |
brew install vbindiff | |
brew install webkit2png | |
brew install zopfli | |
# Remove outdated versions from the cellar. | |
brew cleanup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment