Mac 上值得用brew安装的神器

参考:

homebrew | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirrorhomebrew 使用帮助 | 镜像站使用帮助 | 清华大学开源软件镜像站,致力于为国内和校内用户提供高质量的开源软件镜像、Linux 镜像源服务,帮助用户更方便地获取开源软件。本镜像站由清华大学 TUNA 协会负责运行维护。https://mirror.tuna.tsinghua.edu.cn/help/homebrew/

国内自动安装脚本安装 brew 

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

切换为清华源

# 查看 brew.git 当前源
$ cd "$(brew --repo)" && git remote -v
origin    https://github.com/Homebrew/brew.git (fetch)
origin    https://github.com/Homebrew/brew.git (push)

# 查看 homebrew-core.git 当前源
$ cd "$(brew --repo homebrew/core)" && git remote -v
origin    https://github.com/Homebrew/homebrew-core.git (fetch)
origin    https://github.com/Homebrew/homebrew-core.git (push)

# 替换为中科大源
$ git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git
$ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git
$ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git

# zsh 替换 brew bintray 镜像
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
$ source ~/.zshrc

# bash 替换 brew bintray 镜像
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile

# 刷新源
$ brew update

brew install 安装

工具名 brew install 安装 说明
git brew install git 版本管理工具
wget 下载工具
curl 下载工具
tmux 终端复用神器
vim 替换OS X自带vim
jdk
tree 目录展示工具
lua lua编程语言
coreutils gnu核心
bin
diff
find
ag 高效内容查找工具,比grep、ack更快的递归搜索文件内容
rzsz ssh上传下载文件,适用于跳板环境,与expect有冲突
go
node
jq
htop 代替top
axel 多线程下载工具
cloc 代码统计工具
shellchack shell脚本检查工具
tldr 命令行示例
ncdu 磁盘空间占用分析
glances 监控工具
nmap 网络扫面工具
figlet 艺术字转换
screenfetch 系统信息
ctop docker容器监控工具
pstree 进程查看树
bash-completion bash补齐工具
lolcat 彩虹文字
peco go写的极简过滤工具
cowsay ascii图片
graphviz 拓扑图绘制工具

brew cask 安装

参考:

https://wiki.jikexueyuan.com/project/mac-dev-setup/homebrew.html

# 添加 Github 上的 caskroom/cask 库
$ brew tap caskroom/cask  

# 安装 brew-cask
$ brew install brew-cask  

# 安装 Google 浏览器
$ brew cask install google-chrome 

# 更新  
$ brew update && brew upgrade brew-cask && brew cleanup

你可能感兴趣的:(产品人的起义,brew,mac,os,x)