知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

linux在shell脚本中获取该脚本的所在绝对路径

发布时间:2014-09-05 15:38:09作者:知识屋


linux在shell脚本中获取该脚本的所在绝对路径
 
脚本名:a.sh
位置:/tmp/whuang/study/java
脚本内容:
www.zhishiwu.com  
Shell代码  
#!/bin/sh  
this_dir=`pwd`  
dirname $0|grep "^/" >/dev/null  
if [ $? -eq 0 ];then  
                this_dir=`dirname $0`  
else  
        dirname $0|grep "^/." >/dev/null  
        retval=$?  
        if [ $retval -eq 0 ];then  
                        this_dir=`dirname $0|sed "s#^.#$this_dir#"`  
        else  
                   this_dir=`dirname $0|sed "s#^#$this_dir/#"`  
        fi  
fi  
echo $this_dir  
 
----------------------------------------------
功能:获取脚本的绝对路径。
测试:
 
[root@ppc40 java]# pwd
/tmp/whuang/study/java
[root@ppc40 java]# sh a.sh
/tmp/whuang/study/java
[root@ppc40 java]# cd ..
[root@ppc40 study]# sh java/a.sh
/tmp/whuang/study/java
[root@ppc40 study]# sh ./java/a.sh
/tmp/whuang/study/java
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜