本文为大家介绍linux在shell/ target=_blank class=infotextkey>shell脚本中获取该脚本的所在绝对路径的操作方法,供大家学习参考。
文件名:a.sh
位置:/tmp/whuang/study/php
脚本内容:
功能:获取脚本的绝对路径。
测试:
[root@ppc40 php]# pwd
/tmp/whuang/study/php
[root@ppc40 php]# sh a.sh
/tmp/whuang/study/php
[root@ppc40 php]# cd ..
[root@ppc40 study]# sh php/a.sh
/tmp/whuang/study/php
[root@ppc40 study]# sh ./php/a.sh
/tmp/whuang/study/php