我试图检查一个符号链接是否存在bash。以下是我尝试过的方法。
mda=/usr/mda
if [ ! -L $mda ]; then
echo "=> File doesn't exist"
fi
mda='/usr/mda'
if [ ! -L $mda ]; then
echo "=> File doesn't exist"
fi
然而,这并不奏效。 如果”!'被省略,它永远不会触发。如果‘!’,它每次都会触发。
我试图检查一个符号链接是否存在bash。以下是我尝试过的方法。
mda=/usr/mda
if [ ! -L $mda ]; then
echo "=> File doesn't exist"
fi
mda='/usr/mda'
if [ ! -L $mda ]; then
echo "=> File doesn't exist"
fi
然而,这并不奏效。 如果”!'被省略,它永远不会触发。如果‘!’,它每次都会触发。
当前回答
-L是测试文件是否存在,也是一个符号链接
如果你不想测试文件是否是符号链接,而只是测试它是否存在,不管它是什么类型(文件、目录、套接字等),那么使用-e
如果文件是真正的文件而不是符号链接你可以做所有这些测试 获取一个退出状态,其值指示错误条件。
if [ ! \( -e "${file}" \) ]
then
echo "%ERROR: file ${file} does not exist!" >&2
exit 1
elif [ ! \( -f "${file}" \) ]
then
echo "%ERROR: ${file} is not a file!" >&2
exit 2
elif [ ! \( -r "${file}" \) ]
then
echo "%ERROR: file ${file} is not readable!" >&2
exit 3
elif [ ! \( -s "${file}" \) ]
then
echo "%ERROR: file ${file} is empty!" >&2
exit 4
fi
其他回答
如果你测试文件是否存在,你需要-e而不是-L。-L测试符号链接。
使用readlink怎么样?
# if symlink, readlink returns not empty string (the symlink target)
# if string is not empty, test exits w/ 0 (normal)
#
# if non symlink, readlink returns empty string
# if string is empty, test exits w/ 1 (error)
simlink? () {
test "$(readlink "${1}")";
}
FILE=/usr/mda
if simlink? "${FILE}"; then
echo $FILE is a symlink
else
echo $FILE is not a symlink
fi
这个文件真的是一个符号链接吗?如果不是,通常的存在性测试是-r或-e。
见人测试。
-L如果“文件”存在并且是一个符号链接(被链接的文件可能存在,也可能不存在),则返回true。你需要-f(如果文件存在并且是常规文件则返回true)或者-e(无论文件类型如何,如果文件存在则返回true)。
根据GNU手册,-h等同于-L,但根据BSD手册,它不应该被使用:
-h file如果file存在且为符号链接,则为True。此操作符被保留以与此程序的以前版本兼容。不要依赖它的存在;用-L代替。
也许这就是你要找的。检查一个文件是否存在而不是一个链接。
试试这个命令:
file="/usr/mda"
[ -f $file ] && [ ! -L $file ] && echo "$file exists and is not a symlink"