forked from vitorleal/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrew.sh
More file actions
60 lines (49 loc) · 1.31 KB
/
brew.sh
File metadata and controls
60 lines (49 loc) · 1.31 KB
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
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
brew update
brew upgrade --all
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
brew install coreutils
sudo ln -s /usr/local/bin/gsha256sum /usr/local/bin/sha256sum
# Install some other useful utilities like `sponge`.
brew install moreutils
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed.
brew install findutils
brew install bash
brew install wget --with-iri
brew install bash-completion
# Install more recent versions of some OS X tools.
brew tap homebrew/dupes
brew install vim --override-system-vi
brew install homebrew/dupes/grep
brew install homebrew/dupes/openssh
brew install homebrew/dupes/screen
brew install python
# Install everything else.
brew install go
brew install nmap
brew install ack
brew install git
brew install imagemagick
brew install tree
brew install mongodb
brew install nvm
brew install ffmpeg
brew install w3m
brew install android-sdk
brew install homebrew/apache/ab
brew install jpeg
brew install x264
brew install ngrep
brew install cloc
brew install youtube-dl
# lsusb
brew tap jlhonora/lsusb
brew install lsusb
# Docker
brew install docker-compose
# Brew cask - to install native apps
brew install phinze/cask/brew-cask
brew tap caskroom/versions
# Clean it up
brew cleanup