查找Bash脚本的绝对路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查找Bash脚本的绝对路径相关的知识,希望对你有一定的参考价值。
Gets the absolute path of the script itself even when it's executing, not just a simple "pwd".
abspath="$(cd "${0%/*}" 2>/dev/null; echo "$PWD"/"${0##*/}")"
以上是关于查找Bash脚本的绝对路径的主要内容,如果未能解决你的问题,请参考以下文章