-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrew.sh
More file actions
executable file
·43 lines (31 loc) · 921 Bytes
/
brew.sh
File metadata and controls
executable file
·43 lines (31 loc) · 921 Bytes
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
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
# Make sure we’re using the latest Homebrew.
brew update
brew tap caskroom/versions
brew tap caskroom/fonts
# Upgrade any already-installed formulae.
brew upgrade
brew tap homebrew/versions
brew install bash-completion2
# Install `wget` with IRI support.
brew install wget --with-iri
# Install more recent versions of some macOS tools.
brew install vim --with-override-system-vi
brew install homebrew/dupes/grep --with-default-names
# Install other useful binaries.
brew install python3
brew install tree
brew install docker
brew cask install java
brew cask install iterm2
brew cask install telegram
brew cask install sublime-text
brew cask install spotify
brew cask install ngrok
brew cask install npm
brew cask install postman
brew tap mongodb/brew
brew install mongodb-community@4.0
# Remove outdated versions from the cellar.
brew cleanup