有趣的 Mac 终端命令和技巧
open .
用 Finder 打开当前目录
在 Finder 中拖动文件(夹)到终端窗口 等于 复制地址(和上面一条正好相反)
open -a Google\ Chrome http://guoshuang.com
用 chrome 打开 http://guoshuang.com
ls -l |pbcopy
把 ls 执行结果拷贝到系统剪贴板中
pbpaste
把系统剪贴板中内容粘贴出来(等于 Command+V)
say -f 123.txt
朗读 123.txt,如果要听中文的话,需要在 Preferences - Speech - Text to Speech ,system Voice 中选择 customize,然后选中文,需要安装600M的语言包。注意:文件还必须是 utf-8 编码。(无聊的我,用它听小说)
say -o 123.m4a -f 123.txt
把 123.txt 录制成 123.m4a
python -m SimpleHTTPServer 8000
在当前目录建立 www 服务,可以迅速分享文件给同事
!!
运行最后一次命令(上下键历史记录比这快啊)
cd -
回到刚才目录
sman() {
man "${1}" | col -b | open -f -a /Applications/Sublime\ Text\ 2.app/Contents/MacOS/Sublime\ Text\ 2
}
然后
sman find
用 sublime 打开 man
mdfind *.html
终端中的 spotlight 搜索,比 find 简单
option+鼠标点击
在很长的命令中,切换光标位置(不用狂按左右箭头了)
alt+左右键
在很长的命令中,左右切换一个单词
ctrl+A ctrl+E
在很长的命令中 光标切换到 开始 结束
top -o vsize
查看内存使用
top -o cpu
查看 cpu 使用
dig +short myip.opendns.com @resolver1.opendns.com
查看当前外网 ip
在 Finder Command+g
进入某目录
截屏
Finder 选择文件 拍空格
迅速预览
Shift+滚轮
左右滚屏
via