获取shell脚本自身所在目录

Posted sea-stream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取shell脚本自身所在目录相关的知识,希望对你有一定的参考价值。

 

解决了使用ln -s target linkName创造软链接无法正确取到真实脚本的问题。

#!/bin/bash
SOURCE="$0"
while [ -h "$SOURCE"  ]; do # resolve $SOURCE until the file is no longer a symlink
    DIR="$( cd -P "$( dirname "$SOURCE"  )" && pwd  )"
    SOURCE="$(readlink "$SOURCE")"
    [[ $SOURCE != /*  ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE"  )" && pwd  )"
echo $DIR

 

参考:

https://www.jb51.net/article/59949.htm

以上是关于获取shell脚本自身所在目录的主要内容,如果未能解决你的问题,请参考以下文章