是的,find 命令在 Linux 中可以用于模糊查找符号链接
find
例如,如果你想查找当前目录及其子目录下所有以 .txt 结尾的符号链接,可以使用以下命令:
.txt
find . -type l -name "*.txt"
这里,. 表示从当前目录开始搜索,-type l 表示查找符号链接,-name "*.txt" 表示查找以 .txt 结尾的文件名。
.
-type l
-name "*.txt"