美文网首页
shell 如何打印出当前脚本所在的目录

shell 如何打印出当前脚本所在的目录

作者: for笑 | 来源:发表于2023-10-15 10:17 被阅读0次

    其一:

    current_path=$(dirname $(readlink -f $0))

    echo ${current_path}

    其二:

    current_path=$(cd $(dirname $0);pwd)

    echo ${current_path}

    cd $(dirname $0) 表示切换到当前脚本所在的目录

    相关文章

      网友评论

          本文标题:shell 如何打印出当前脚本所在的目录

          本文链接:https://www.haomeiwen.com/subject/aqcobdtx.html