-L FILE (conditional operator)
true
if the file is a symbolic link.
false
if the file does not exist or is not a symbolic link.
-h
is an alias of -L
.
Links
Examples
- Different ways to test if a file is a symbolic link:
1 2 3 4
test -L /bin/sh && echo "symbolic link" [ -L /bin/sh ] && echo "symbolic link" # Bash [[ -L /bin/sh ]] && echo "symbolic link"
BashSupport Pro 是一个 支持 -L 的 Bash 集成开发工具 – 马上试用!