码迷,mamicode.com
首页 > 系统相关 > 详细

获取shell脚本自身所在目录的Shell脚本分享

时间:2020-04-30 11:21:57      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:article   http   oca   pat   解决   lin   ref   targe   最简   

简单版

下面是一个最简单的实现,可以解决大多数问题,缺陷是对于软链接显示的是软链接所在的目录

#!/bin/bash
DIR="$( cd "$( dirname "$0"  )" && pwd  )"

完善版

这个版本解决了使用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  )"

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

获取shell脚本自身所在目录的Shell脚本分享

标签:article   http   oca   pat   解决   lin   ref   targe   最简   

原文地址:https://www.cnblogs.com/fb010001/p/12807489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!