Skip to content

Instantly share code, notes, and snippets.

View viveksoundrapandi's full-sized avatar

Vivek Soundrapandi viveksoundrapandi

View GitHub Profile
@viveksoundrapandi
viveksoundrapandi / fresh_install_of_osx.sh
Created February 18, 2019 12:42 — forked from vraravam/fresh-install-of-osx.sh
Steps to get "up and running" with new Mac OSX
#!/usr/bin/env bash
##################################
# Install command line dev tools #
##################################
/usr/bin/xcode-select -p > /dev/null 2>&1
if [ $# != 0 ]; then
xcode-select --install
sudo xcodebuild -license accept
fi