Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想找到具有多个链接的文件。我正在使用 ubuntu 10.10。
find -type l
它将显示文件的所有链接,但我想计算特定文件的链接。谢谢。
使用此命令,您将获得链接文件的摘要:
find . -type l -exec readlink -f {} \; | sort | uniq -c | sort -n
或者
find . -type l -print0 | xargs -n1 -0 readlink -f | sort | uniq -c | sort -n