-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup-brew.sh
executable file
·71 lines (66 loc) · 1.42 KB
/
setup-brew.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
#
#
if ! which brew > /dev/null; then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi;
brew update
for app in "bash" \
"ant" \
"bash-completion" \
"coreutils" \
"diff-so-fancy" \
"exiftool" \
"fontconfig" \
"fortune" \
"fpp" \
"freetype" \
"gawk" \
"gd" \
"gdbm" \
"gettext" \
"git" \
"glib" \
"gnu-tar" \
"go" \
"graphviz" \
"gts" \
"htop-osx" \
"httpie" \
"icu4c" \
"ifstat" \
"jasper" \
"jpeg" \
"jq" \
"libffi" \
"libidn2" \
"libpng" \
"libtiff" \
"libtool" \
"libunistring" \
"netpbm" \
"node" \
"oniguruma" \
"openssl" \
"p7zip" \
"parallel" \
"pcre" \
"python" \
"python3" \
"readline" \
"ruby" \
"sqlite" \
"ssh-copy-id" \
"sshrc" \
"tcpflow" \
"titlecase" \
"tree" \
"vim" \
"webp" \
"wget" \
"xz"; do
brew install $app
done
# for app in "qlstephen"; do
# brew cask install $app
# done