Skip to content

Instantly share code, notes, and snippets.

@sorknes
sorknes / new-mac
Last active December 12, 2019 13:32
Quickly setup a new Mac
#!/bin/bash
# Install Xcode CLI
echo "Installing Xcode CLI ..."
xcode-select --install
echo "Xcode CLI installation complete"
# Install Homebrew
if test ! $(which brew); then
echo "Installing Homebrew ..."