Skip to content

Instantly share code, notes, and snippets.

View michaelmcdonald's full-sized avatar

Michael McDonald michaelmcdonald

  • Facility for Rare Isotope Beams
  • Lansing, MI
  • 22:16 (UTC -04:00)
View GitHub Profile
@michaelmcdonald
michaelmcdonald / install_gnucmd_osx.sh
Created October 17, 2018 01:13 — forked from tomdavidson/install_gnucmd_osx.sh
Installs GNU Command Line Tools & then some.
#!/usr/bin/env bash
# Installs GNU Command Line Tools & then some. Requires homebrew.
# Most are newer and more powerful that than OSX’s but also solves most OS compatibility issues
echo "Installing GNU coreutils and various."
export PATH="$(brew --prefix coreutils)/libexec/gnubin:/usr/local/bin:$PATH"
brew install coreutils
brew install binutils
brew install diffutils
brew install ed --with-default-names
brew install findutils --with-default-names