shell 脚本获得脚本执行的相对路径
2021-05-23 本文已影响0人
SmartBin
#! /bin/bash
PRG="$0"
while [ -h "$PRG" ]; do
ls=$(ls -ld "$PRG")
link=$(expr "$ls" : '.*-> \(.*\)$')
if expr "$link" : '.*/.*' >/dev/null; then
PRG="$link"
else
PRG=$(dirname "$PRG")/"$link"
fi
done
PRGDIR=$(dirname "$PRG")
# full path
cd "$PRGDIR"/
PRGDIR=$(pwd)
echo "$PRGDIR"