shell脚本怎么获得当前相对路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本怎么获得当前相对路径相关的知识,希望对你有一定的参考价值。

参考技术A pwd命令
或者
dirname $0

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

test_path.sh

#!/bin/bash

# 当前工作路径
current_working_path="$(pwd)"
echo "current_working_path = $current_working_path"

# 当前脚本所在路径
current_script_location="$(cd "$(dirname "$0")"; pwd)"
echo "current_script_location = $current_script_location"

# 当前脚本所在路径与工作路径的相对路径
relative_script_to_working_path="$(dirname $0)"
echo "relative_script_to_working_path = $relative_script_to_working_path"

# echo "pwd: $(pwd)"

运行示例 :

以上是关于shell脚本怎么获得当前相对路径的主要内容,如果未能解决你的问题,请参考以下文章

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

Shell脚本怎样转相对路径为绝对路径

Shell脚本中如何获取软链接的地址

使用相对路径从另一个脚本调用一个 shell 脚本

请教如何获得一个shell文件所在的目录

Shell脚本——获取脚本所在的绝对路径