-
Notifications
You must be signed in to change notification settings - Fork 0
/
earth01-homebrew.sh
84 lines (77 loc) · 2.79 KB
/
earth01-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
# ##############################################################################
# System Software Overview:
# System Version: macOS 10.15.5 (19F101)
# Kernel Version: Darwin 19.5.0
# ##############################################################################
# ------------------------------------------------------------------------------
# Post-Install - Homebrew
# ------------------------------------------------------------------------------
### Homebrew
# https://brew.sh/
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew upgrade
# ------------------------------------------------------------------------------
# Utilities
# ------------------------------------------------------------------------------
brew install htop ipcalc midnight-commander nmap pwgen telnet watch wget tmux \
tree
### ipcalc
# http://jodies.de/ipcalc
brew install ipcalc
### cfssl
# https://github.com/cloudflare/cfssl
brew install cfssl
### jq
# https://stedolan.github.io/jq/
brew install jq
### yq
# https://github.com/mikefarah/yq
brew install yq
### Nred Fonts
# https://www.nerdfonts.com/
brew tap homebrew/cask-fonts
brew cask install font-hack-nerd-font
# ------------------------------------------------------------------------------
# AWS Tools
# ------------------------------------------------------------------------------
### awscli
# https://aws.amazon.com/cli/
brew install awscli
### awless
# http://awless.io/
brew tap wallix/awless
### cli53
# https://github.com/barnybug/cli53
brew install cli53
### s3cmd
# https://s3tools.org/s3cmd
brew install s3cmd
### aws-vault
# https://github.com/99designs/aws-vault
brew cask install aws-vault
# ------------------------------------------------------------------------------
# GCP Tools
# ------------------------------------------------------------------------------
### Google SDK
# https://cloud.google.com/sdk/
brew tap caskroom/cask
brew cask install google-cloud-sdk
# ------------------------------------------------------------------------------
# OCI Tools
# ------------------------------------------------------------------------------
### OCI CLI
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/cliconcepts.htm
brew install jpoon/homebrew-oci-cli/oci-cli
# ------------------------------------------------------------------------------
# Terraform Tools
# ------------------------------------------------------------------------------
### Terraformer
# https://github.com/GoogleCloudPlatform/terraformer
brew install terraformer
# ------------------------------------------------------------------------------
# K8 Tools
# ------------------------------------------------------------------------------
### kubectl
# https://kubernetes.io/docs/tasks/tools/install-kubectl/
brew install kubectl
brew cleanup