LINUX 下一个重量级的配置命令:CDPATH全局变量的配置(原创)

LINUX 下一个重量级的配置命令:CDPATH全局变量的配置
作者:余超 email:[email protected]


如下是根据《Linix 101 Hacks》这本书里面的来翻译整理的,
希望大家多多提意见,如果你有更好的方法请发表看法或者回邮件给我,


如果你经常使用cd 命令到一个子目录或者是一个特殊父目录,你可以设置全局变量CDPATH
指定到要到的子目录或是特殊的父目录,而不用给出绝对的路径名称。
实例如下:
yuchao@yuchao-Latitude-E5410:~$ pwd
/home/yuchao
yuchao@yuchao-Latitude-E5410:~$ cd mail
-bash: cd: mail: No such file or directory
[Note: This is looking for mail directory under current
directory]
yuchao@yuchao-Latitude-E5410:~$ export CDPATH=.:~:/etc:/var:/usr/local
yuchao@yuchao-Latitude-E5410:~$ cd mail
/var/mail
yuchao@yuchao-Latitude-E5410:/var/mail$ pwd
/var/mail
yuchao@yuchao-Latitude-E5410:/var/mail$ 
[Note: This is looking for mail under /var and not
under current directory]
yuchao@yuchao-Latitude-E5410:/var/mail$ pwd
/var/mail




要使这样的配置开机生效你把配置命令 export CDPATH=.:~:/etc:/var:/usr/local 添加到你的配置文件
~/.bash_profile或者~/.bashrc ,或者是全局的/etc/profile配置文件中。
这个命令对于有设置HOME工作目录的工程师很有用,比如你的$JAVA_HOME,$TOMCAT_HOME,$ORACLE_HOME和$PATH等等,
你都可以添加到这个全局变量中,之后就可以直接cd到想要去的目录了,很hack吧!!
Linux 101 Hacks
www.thegeekstuff.com

你可能感兴趣的:(java,oracle,tomcat,linux,Path,email)