获取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脚本自身所在目录的主要内容,如果未能解决你的问题,请参考以下文章

获取shell脚本自身所在目录

获取shell脚本自身所在目录

shell脚本中获取当前所在目录地址

调用shell脚本时,获取脚本的当前目录

linux shell脚本如何获取“当前工作路径”,“执行脚本所在路径”,“执行脚本所在路径和执行路径的相对路径”?(当前目录脚本目录脚本路径)

linux shell脚本如何获取“当前工作路径”,“执行脚本所在路径”,“执行脚本所在路径和执行路径的相对路径”?(当前目录)