原文链接:http://sexywp.com/bash-how-to-get-the-basepath-of-current-running-script.htm

常见的一种误区,是使用 pwd 命令,该命令的作用是“print name of current/working directory”,这才是此命令的真实含义,当前的工作目录,这里没有任何意思说明,这个目录就是脚本存放的目录。所以,这是不对的。你可以试试 bash shell/a.sh,a.sh 内容是 pwd,你会发现,显示的是执行命令的路径 /home/june,并不是 a.sh 所在路径:/home/june/shell/a.sh

另一个误人子弟的答案,是 $0,这个也是不对的,这个$0是Bash环境下的特殊变量,其真实含义是:

Expands to the name of the shell or shell script. This is set at shell initialization.  If bash is invoked with a file of commands, $0 is set to the name of that file. If bash is started with the -c option, then $0 is set to the first argument after the string to be executed, if one is present. Otherwise, it is set to the file name used to invoke bash, as given by argument zero.

这个$0有可能是好几种值,跟调用的方式有关系:

  • 使用一个文件调用bash,那$0的值,是那个文件的名字(没说是绝对路径噢)

  • 使用-c选项启动bash的话,真正执行的命令会从一个字符串中读取,字符串后面如果还有别的参数的话,使用从$0开始的特殊变量引用(跟路径无关了)

  • 除此以外,$0会被设置成调用bash的那个文件的名字(没说是绝对路径)

下面对比下正确答案:

 
basepath=$(cd `dirname $0`; pwd)

在此解释下basepath :

dirname $0,取得当前执行的脚本文件的父目录

cd `dirname $0`,进入这个目录(切换当前工作目录)

pwd,显示当前工作目录(cd执行后的)

由此,我们获得了当前正在执行的脚本的存放路径。

最新文章

  1. webstorm 更改默认服务器端口
  2. Java 用LinkdeList实现52张扑克牌
  3. java-String Date Calendar之间的转换
  4. windows server 2012 r2 iis8.5 部署asp.net mvc4/5程序小结
  5. hdu 3398
  6. hdu 3367(Pseudoforest ) (最大生成树)
  7. 编译及load mydqli.so文件
  8. 编译vo-aacenc遇到的问题
  9. java后台訪问url连接——HttpClients
  10. (转)js网址验证
  11. memcache学习和分析
  12. 菜鸟Scrum敏捷实践系列(一)用户故事概念
  13. 浅谈MySQL的事务隔离级别
  14. zTree实现地市县三级级联DAO接口
  15. bzoj2969 矩形粉刷
  16. tomcat启动批处理——catalina.bat
  17. Vue.js——快速入门
  18. MongoDB AUTH结果验证
  19. Spring Cloud(Dalston.SR5)--Feign 声明式REST客户端
  20. MySQL----ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes

热门文章

  1. 遍历一个Set的方法只有一个:迭代器(interator)
  2. php -- 对象遍历
  3. bundle安装方法
  4. An Edge-Guided Image Interpolation Algorithm via Directional Filtering and Data Fusion【翻译】
  5. 基于JEECG的代码模板自动生成
  6. 杭电 1280 前m大的数
  7. 调用组件的C++代码
  8. Linux命令之乐--find
  9. Linux Kernel 4.7版本发布
  10. MySQL- INSTR 函数的用法