在与shell脚本相同的目录中创建文件夹

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

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

  • 你可以试试这一行:

    DIR="$( cd "$( dirname "$0" )" && pwd )
    

    将留下一个$ DIR变量,其中包含当前目录的完整路径。 请参阅此答案以获取更多信息!


    script_dir=$(dirname "$0")
    

    $ 0是在命令行中输入的运行脚本的名称(例如: ./bin/script

    如果你想要完整的路径:

    script_dir=$(cd -P -- "$(dirname "$0")" && pwd -P)
    
    链接地址: http://www.djcxy.com/p/9753.html

    上一篇: Create folder in same directory as shell script

    下一篇: Run a Shell Script from the Directory it is in