小编典典

符号链接:查找链接到该文件的所有文件

linux

大家好,我需要在linux中执行此操作:

  • 给出:文件名“ foo.txt”
  • 查找:所有符号链接到“ foo.txt”的文件

怎么做?谢谢!


阅读 441

收藏
2020-06-03

共1个答案

小编典典

这取决于是否要查找指向特定文件的链接,foo.txt,那么这是唯一的好方法:

find -L / -samefile path/to/foo.txt

另一方面,如果您只是想查找指向恰好名为的 任何 文件的链接foo.txt,则类似

find / -lname foo.txt

要么

find . -lname \*foo.txt # ignore leading pathname components
2020-06-03