#!/bin/sh
source ./utils.sh
# Make or touch three files: formulas, casks, and fonts.
# In them, list their respective names of what you want installed.
echo "\033[1;37;45m \033[m"
echo "\033[1;37;45m installing formulas \033[m"
echo "\033[1;37;45m \033[m"
FORMULAS=`cat ./formulas`
for formula in $FORMULAS ; do
( brew install $formula )
done
echo "\033[1;37;44m \033[m"
echo "\033[1;37;44m installing casks \033[m"
echo "\033[1;37;44m \033[m"
CASKS=`cat ./casks`
brew tap caskroom/cask
for cask in $CASKS; do
( brew cask install $cask )
done
Install scripts for use with a USB key, for setting up a new Mac for development.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.