基本上,我需要使用与Shell脚本文件位置相关的路径来运行脚本,如何将当前目录更改为与脚本文件所在的目录相同的目录?
基本上,我需要使用与Shell脚本文件位置相关的路径来运行脚本,如何将当前目录更改为与脚本文件所在的目录相同的目录?
Answers:
在Bash中,您应该像这样获得所需的东西:
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
echo "$BASEDIR"
readlink
(请参见下面的“答案”)
$BASH_SOURCE
来代替,更安全$0
,因为$0
它并不总是包含被调用脚本的路径,例如“采购”脚本时。
$BASH_SOURCE
是Bash特定的,问题通常是关于shell脚本的。
CUR_PATH=$(pwd)
或pwd
返回当前目录(不必是脚本的父目录)!
$BASH_SOURCE
,它返回了我需要的东西。我的脚本正在从另一个脚本中调用,并在$0
返回.
时$BASH_SOURCE
返回正确的子目录(在我的情况下scripts
)。
原始帖子包含解决方案(忽略响应,它们不会添加任何有用的信息)。有趣的工作由提到的readlink
带有option的unix命令完成-f
。当绝对路径和相对路径都调用脚本时有效。
对于bash,sh,ksh:
#!/bin/bash
# Absolute path to this script, e.g. /home/user/bin/foo.sh
SCRIPT=$(readlink -f "$0")
# Absolute path this script is in, thus /home/user/bin
SCRIPTPATH=$(dirname "$SCRIPT")
echo $SCRIPTPATH
对于tcsh,csh:
#!/bin/tcsh
# Absolute path to this script, e.g. /home/user/bin/foo.csh
set SCRIPT=`readlink -f "$0"`
# Absolute path this script is in, thus /home/user/bin
set SCRIPTPATH=`dirname "$SCRIPT"`
echo $SCRIPTPATH
readlink
。这就是为什么我建议使用push / popd(bash内置)的原因。
-f
OS X完全不支持(从Lion开始);在那里,您可以放弃-f
解决最多一个间接级别的问题,例如pushd "$(dirname "$(readlink "$BASH_SOURCE" || echo "$BASH_SOURCE")")"
,或者可以滚动自己的递归symlink-following脚本,如链接文章中所示。
sh /some/other/directory/script.sh)
情况下运行脚本,则将是一个问题(例如,在这种情况下.
将是您的密码,而不是/some/other/directory
早先对一个答案的评论说了这一点,但是很容易在所有其他答案中错过。
使用bash时:
echo this file: "$BASH_SOURCE"
echo this dir: "$(dirname "$BASH_SOURCE")"
dirname "$BASH_SOURCE"
$ BASH_SOURCE中的空格。
"$(dirname "${BASH_SOURCE[0]}")"
假设您正在使用bash
#!/bin/bash
current_dir=$(pwd)
script_dir=$(dirname $0)
echo $current_dir
echo $script_dir
此脚本应打印您所在的目录,然后打印该脚本所在的目录。例如,当/
使用中的脚本进行调用时/home/mez/
,它将输出
/
/home/mez
请记住,在从命令的输出中分配变量时,将命令包装在$(
和)
-中,否则您将无法获得所需的输出。
如果您正在使用bash ...
#!/bin/bash
pushd $(dirname "${0}") > /dev/null
basedir=$(pwd -L)
# Use "pwd -P" for the path without links. man bash for more info.
popd > /dev/null
echo "${basedir}"
pushd
/ 替换为popd
和cd $(dirname "${0}")
,cd -
以使其在其他外壳上运行(如果它们具有)pwd -L
。
回答此问题的最佳答案是:
从内部获取Bash脚本的源目录。
它是:
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
单行代码,无论从何处调用脚本,都将为您提供脚本的完整目录名称。
要了解其工作原理,可以执行以下脚本:
#!/bin/bash
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
TARGET="$(readlink "$SOURCE")"
if [[ $TARGET == /* ]]; then
echo "SOURCE '$SOURCE' is an absolute symlink to '$TARGET'"
SOURCE="$TARGET"
else
DIR="$( dirname "$SOURCE" )"
echo "SOURCE '$SOURCE' is a relative symlink to '$TARGET' (relative to '$DIR')"
SOURCE="$DIR/$TARGET" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
fi
done
echo "SOURCE is '$SOURCE'"
RDIR="$( dirname "$SOURCE" )"
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
if [ "$DIR" != "$RDIR" ]; then
echo "DIR '$RDIR' resolves to '$DIR'"
fi
echo "DIR is '$DIR'"
让我们使其成为POSIX oneliner:
a="/$0"; a=${a%/*}; a=${a#/}; a=${a:-.}; BASEDIR=$(cd "$a"; pwd)
在包括BSD在内的许多Bourne兼容外壳上进行了测试。
据我所知,我是作者,因此将其置于公共领域。有关更多信息,请参见:https : //www.jasan.tk/posts/2017-05-11-posix_shell_dirname_replacement/
cd: too many arguments
如果路径中有空格,则返回$PWD
。(一个明显的解决方法,但仅显示实际上有多少个极端情况)
介绍
这个答案纠正了这个线程(由TheMarko编写)的非常破碎但令人震惊的最高投票答案:
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
echo "$BASEDIR"
为什么在自己的目录上不能使用目录名“ $ 0”?
目录名$ 0仅在用户以非常特定的方式启动脚本时才有效。我能够找到几种情况,其中该答案失败并导致脚本崩溃。
首先,让我们了解此答案的工作原理。他通过执行来获取脚本目录
dirname "$0"
$ 0代表调用脚本的命令的第一部分(基本上是没有参数的输入命令:
/some/path/./script argument1 argument2
$ 0 =“ / some / path /./ script”
dirname基本上在字符串中找到最后一个/并将其截断。因此,如果您这样做:
dirname /usr/bin/sha256sum
您将获得:/ usr / bin
此示例运行良好,因为/ usr / bin / sha256sum是格式正确的路径,但
dirname "/some/path/./script"
效果不好,会给您:
BASENAME="/some/path/." #which would crash your script if you try to use it as a path
假设您与脚本位于同一目录,并使用此命令启动它
./script
$ 0在这种情况下将是./script和目录名$ 0将给出:
. #or BASEDIR=".", again this will crash your script
使用:
sh script
如果不输入完整路径,还将给出BASEDIR =“。
使用相对目录:
../some/path/./script
给出$ 0的目录名:
../some/path/.
如果您位于/ some目录中,并且以这种方式调用脚本(请注意,开头没有/,同样是相对路径):
path/./script.sh
您将获得目录名$ 0的以下值:
path/.
和./path /./ script(相对路径的另一种形式)给出:
./path/.
basedir $ 0只能工作的两种情况是用户使用sh或touch启动脚本,因为这两种情况都将导致$ 0:
$0=/some/path/script
这将为您提供可与目录名一起使用的路径。
解决方案
您将考虑并检测上述每种情况,并在出现这种情况时对其进行修复:
#!/bin/bash
#this script will only work in bash, make sure it's installed on your system.
#set to false to not see all the echos
debug=true
if [ "$debug" = true ]; then echo "\$0=$0";fi
#The line below detect script's parent directory. $0 is the part of the launch command that doesn't contain the arguments
BASEDIR=$(dirname "$0") #3 situations will cause dirname $0 to fail: #situation1: user launches script while in script dir ( $0=./script)
#situation2: different dir but ./ is used to launch script (ex. $0=/path_to/./script)
#situation3: different dir but relative path used to launch script
if [ "$debug" = true ]; then echo 'BASEDIR=$(dirname "$0") gives: '"$BASEDIR";fi
if [ "$BASEDIR" = "." ]; then BASEDIR="$(pwd)";fi # fix for situation1
_B2=${BASEDIR:$((${#BASEDIR}-2))}; B_=${BASEDIR::1}; B_2=${BASEDIR::2}; B_3=${BASEDIR::3} # <- bash only
if [ "$_B2" = "/." ]; then BASEDIR=${BASEDIR::$((${#BASEDIR}-1))};fi #fix for situation2 # <- bash only
if [ "$B_" != "/" ]; then #fix for situation3 #<- bash only
if [ "$B_2" = "./" ]; then
#covers ./relative_path/(./)script
if [ "$(pwd)" != "/" ]; then BASEDIR="$(pwd)/${BASEDIR:2}"; else BASEDIR="/${BASEDIR:2}";fi
else
#covers relative_path/(./)script and ../relative_path/(./)script, using ../relative_path fails if current path is a symbolic link
if [ "$(pwd)" != "/" ]; then BASEDIR="$(pwd)/$BASEDIR"; else BASEDIR="/$BASEDIR";fi
fi
fi
if [ "$debug" = true ]; then echo "fixed BASEDIR=$BASEDIR";fi
如此之多的答案,都似乎是合理的,每个答案都有赞成和反对的目的,并且目标略有不同(可能应该为每一个陈述)。这是另一个解决方案,它满足了一个基本目标,即在所有bash上清晰且可在所有系统上正常工作(不假设bash版本readlink
或pwd
选项的,并且可以合理地预期实现(例如,解决符号链接是有趣的问题,但通常不是您真正想要的),处理诸如路径中的空格之类的边缘情况,忽略任何错误,并在出现任何问题时使用合理的默认值。
每个组件都存储在一个单独的变量中,您可以单独使用:
# script path, filename, directory
PROG_PATH=${BASH_SOURCE[0]} # this script's name
PROG_NAME=${PROG_PATH##*/} # basename of script (strip path)
PROG_DIR="$(cd "$(dirname "${PROG_PATH:-$PWD}")" 2>/dev/null 1>&2 && pwd)"
受到blueyed答案的启发
read < <(readlink -f $0 | xargs dirname)
cd $REPLY
这应该够了吧:
echo `pwd`/`dirname $0`
根据调用方式和cwd的不同,它看起来可能很丑陋,但是应该可以带您到达需要的位置(或者,如果您关心字符串的外观,可以对其进行调整)。
`pwd`/`dirname $0`
但是在符号链接上可能仍然会失败