Skip to content

Instantly share code, notes, and snippets.

@pflooky
pflooky / install_mac_apps.sh
Last active January 7, 2021 07:30
Install all base apps for dev
#!/bin/bash
Green='\033[0;32m'
echo -e "${Green} Installing all apps under $HOME/install folder"
mkdir ~/install
cd install
#Homebrew
echo -e "${Green} Installing homebrew..."
mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew