Barret Lee Home
facebook send mail to barret sina weibo
share

Mac下的效率工具autojumpedit

日期:2015-03-30

作者: Barret Lee

IDE 用起来总是得不到满足,Mac 适合搞开发,我也十分喜欢 Mac 系统,当然可以说喜欢 Unix/Linux 系统。今天在 .zshrc 文件中添加了这么几行快捷命令:

alias gow   = "cd ~/barretlee/work"
alias gotb  = "cd ~/barretlee/work/tb"
alias gotbn = "cd ~/barretlee/work/tb/node" 

写完之后我立马把这几行命令删掉了,这种方式似乎有点二。网上搜罗了下,找到了一个挺不错的工具 - autojump。

Autojump 自己是这么描述的:

autojump is a faster way to navigate your filesystem. It works by maintaining a database of the directories you use the most from the command line.

通过 history 命令你可以找到最近用过的命令,比如

history | grep "git clone"

通过上述命令就能找到近期 clone 了哪些库,省却了写一堆代码的功夫。autojump 就是通过记录你在 history 中的行为把你访问过的文件夹路径都 cache 下来,当你进行如下操作时:

autojump node

他会直接跳到之前访问的 ~/barretlee/work/tb/node 目录下。他还有一个快捷方式:

j node

我很喜欢这个小工具,让我游荡于文件夹之间不费吹灰之力。

安装:

Enjoy coding. :)

标签: mac 效率 autojump
上一篇:mac数据迁移xcode错误问题
下一篇:干掉浏览器中的自动填充