获取脚本被调用的路径

这个问题在这里已经有了答案:

  • 从50个答案中获取Bash脚本的源代码目录

  • 尝试这个:

    srcdir=$(pwd)
    

    这会让你获得当前目录。 也就是说,你从哪里调用你的脚本,在你的例子中应该是Desktop

    正如在评论中适当讨论的那样,这个选择也很好:

    srcdir=$PWD
    
    链接地址: http://www.djcxy.com/p/9763.html

    上一篇: Get path of where a script was called from

    下一篇: how to echo the path of the script executed from another location?