Software ou script para encontrar fonte de recursão / loop no diretório?

1

Como por título. Eu notei que os comandos du e find nunca podem ser concluídos, mas a estrutura do diretório é muito complexa para procurar loops, etc., manualmente. Eu suspeito que há um symlink mal colocado lá. Existe uma ferramenta para ajudar a encontrar a fonte do problema?

    
por Alex 02.03.2012 / 03:23

1 resposta

1

TLDR: find -L -type l /start/here relatará links quebrados no GNU / Linux

De "info find" no Linux:

‘-type’ reports the types of the files that symbolic links point to. This means that in combination with ‘-L’, ‘-type l’ will be true only for broken symbolic links.’

    
por 09.07.2013 / 11:12