Find

我怎樣才能快速找到遞歸符號連結?

  • April 18, 2016

我遇到了一個索引程序執行時間比預期長得多的問題。我想排除遞歸符號連結的可能性。我怎樣才能找到在某種程度上遞歸的符號連結?

這個相關的問題,提供了一種使用以下find命令辨識遞歸符號連結的方法:

$ find -L . 
.
./a
./a/b
./a/b/c
./a/b/c/d
find: File system loop detected; `./a/b/c/d/e' is part of the same file system loop as `./a/b'.
find: `./a/b/e': Too many levels of symbolic links

引用自:https://unix.stackexchange.com/questions/277162