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

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

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

怎么做?谢谢!

回答:

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

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

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

find / -lname foo.txt

要么

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

以上是 符号链接:查找链接到该文件的所有文件 的全部内容, 来源链接: utcz.com/qa/406818.html

回到顶部