程序员人生 网站导航

shell终端多目录间快速cd工具

栏目:综合技术时间:2015-03-13 07:47:17

1.解决的问题

当在多个目录间cd的时候,需要输入1大串的路径。例如在不同的项目、不同的分支代码目录跳转,在桌面和文档目录跳转
cd ~/Desktop/project_trunk
cd ~/Download/cang_lao_shi
cd ~/code/branch⑴.11/
cd ~/code/branch⑶.1/project/android 
这个工具就可以令这些cd简化成几个字符:
g2t
g2c
g21
g2a


2.脚本配置

工具是个shell脚本,附在本文末尾,复制全部代码保存为任意文件名,例如g2.sh,然后在~/.bashrc的最后1行加入单引号里的内容 'source g2.sh' 或 '. g2.sh'

3.自定义路径

如果想加入自定义的路径,找到

shortcut_and_paths=(xxxxx)
的地方,增加1行就能够了。每行就是1个参数和实际命令。可以看到
shortcut_and_paths=( 'd ~/Desktop' 's ~/Downloads/subversion⑴.7.17' '7 ~/Downloads/gmock⑴.7.0' 'n ~/Documents/department/17无线推行部/内部文档/主管文档' 'wk /home/liuhx/Desktop/WebKit/Source/WTF/icu' )
第1个空格前是g2的后缀,第1个空格后是cd的路径。增加完需要重新source或新建1个terminal才会生效。

如果忘了可以g2啥,可以输入g2help(不是g2hell哦)就可以列出所有命令。


附脚本:

#!/bin/bash #author http://blog.csdn.net/hursing # this variable should be complex enough to avoid naming pollution shortcut_and_paths=( 'd ~/Desktop' 's ~/Downloads/subversion⑴.7.17' '7 ~/Downloads/gmock⑴.7.0' 'n ~/Documents/department/17无线推行部/内部文档/主管文档' 'wk /home/liuhx/Desktop/WebKit/Source/WTF/icu' ) for ((i = 0; i < ${#shortcut_and_paths[@]}; i++)); do cmd=${shortcut_and_paths[$i]} shortcut=${cmd%% *} path=${cmd#* } func="g2$shortcut() { cd $path; }" eval $func done g2help() { for ((i = 0; i < ${#shortcut_and_paths[@]}; i++)); do cmd=${shortcut_and_paths[$i]} shortcut=${cmd%% *} path=${cmd#* } echo -e "g2$shortcut => cd $path" done echo -e "33[0;33;1mexample: input 'g2${shortcut_and_paths[0]%% *}' to run 'cd ${shortcut_and_paths[0]#* }'33[0m" }

FAQ:

为何不用alias呢?由于非交互式shell不会展开alias,也就是用function就可以被其它脚本调用了

转载请注明出处:http://blog.csdn.net/hursing

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐