0

如何验证文件或目录是否存在并且是Linux上的符号链接(软链接)?

我想写一个shell来做到这一点。

你能给我一些建议吗?

4

1 回答 1

2

您可以使用-L测试选项:

if [[ -L $file ]]; then
    echo "$file exists and is a symbolic link"
fi
于 2013-07-29T07:38:18.767 回答