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
55 lines (47 loc) · 1.13 KB
/
brew.sh
File metadata and controls
55 lines (47 loc) · 1.13 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
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
brew update
brew upgrade
# 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 install vim --override-system-vi
brew install grep
brew install openssh
brew install screen
brew install python
# Install everything else.
brew install git
brew install go
brew install nmap
brew install ack
brew install imagemagick
brew install tree
brew install nvm
brew install ffmpeg
brew install w3m
brew install android-sdk
brew install jpeg
brew install x264
brew install cloc
brew install tldr
brew install gh
brew install ctop
# Rip Grep
brew install rg
# Find replace
brew install fd
# Cat replace
brew install bat
brew install htop
brew install glances
# Clean it up.
brew cleanup