This file contains 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
#!/bin/bash | |
# Run outstanding system updates | |
echo "Updating system install..." | |
softwareupdate -ia --verbose | |
echo "" | |
# Install xcode cli development tools | |
echo "Installing xcode cli development tools..." | |
xcode-select --install |