-
Notifications
You must be signed in to change notification settings - Fork 1
/
install_homebrew.sh
executable file
·119 lines (108 loc) · 1.57 KB
/
install_homebrew.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
# Check for Homebrew,
# Install if we don't have it
if test ! "$(which brew)"; then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Update homebrew recipes
brew update
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
# Install Bash 4
brew install bash
# Install more recent versions of some OS X tools
brew tap homebrew/dupes
brew install homebrew/dupes/grep
echo "put this in Your's .bash_profile file in order too use this tools"
echo "$PATH=$(brew --prefix coreutils)/libexec/gnubin:$PATH"
#Taps
brew tap johanhaleby/kubetail
brew tap wata727/tflint
brew tap buo/cask-upgrade
brew tap osx-cross/avr
binaries=(
ark
asciinema
avrdude
avr-gcc
awscli
awslogs
bash
bash-completion
brew-cask-completion
coreutils
cowsay
docker-compose
dshb
weaveworks/tap/eksctl
eksctl-aws-iam-authenticator
figlet
findutils
fzf
gnu-tar
gnutls
goenv
grep
hicolor-icon-theme
htop
hugo
icdiff
ifstat
ipcalc
jq
kompose
kops
kube-ps1
kubectx
kubernetes-cli
kubernetes-helm
kubetail
lolcat
lua
mas
midnight-commander
mongodb
mono
moreutils
mutt
mysql
ncurses
neofetch
neovim
nmap
openssl
packer
packer-completion
perl
pipenv
pipes-sh
postgresql
pwgen
pyenv
pyenv-virtualenv
python
python3
python@2
rbenv
rsync
s3cmd
shpotify
sqlite
telnet
tfenv
tflint
tmux
tree
tty-clock
watch
wget
wifi-password
zsh
zsh-completions
)
echo "installing binaries..."
brew install "${binaries[@]}"
brew cleanup