我试图检查一个符号链接是否存在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
其他回答
使用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。
见人测试。
首先你可以这样做: mda = " / usr / mda” 如果[!-L "${mda}"];然后 echo "=>文件不存在" fi 如果你想用更高级的风格,你可以这样写: #!/bin/bash mda = " $ 1 " If [-e "$1"];然后 如果[!-l "$1"] 然后 返回“您的条目不是符号链接” 其他的 返回“您的条目是符号链接” fi 其他的 echo "=>文件不存在" fi
上述结果如下:
root@linux:~# ./sym.sh /etc/passwd
you entry is not symlink
root@linux:~# ./sym.sh /usr/mda
your entry is symlink
root@linux:~# ./sym.sh
=> File doesn't exist
也许这就是你要找的。检查一个文件是否存在而不是一个链接。
试试这个命令:
file="/usr/mda"
[ -f $file ] && [ ! -L $file ] && echo "$file exists and is not a symlink"
-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