Per rimuovere i collegamenti (da man find
sotto -type
):
l symbolic link; this is never true if the -L option or the
-follow option is in effect, unless the symbolic link is
broken. If you want to search for symbolic links when -L
is in effect, use -xtype.
Penso che questo dovrebbe risolvere il problema:
find /usr/local/lib/ -maxdepth 1 -follow -type l
L'output produce un elenco dei file che si desidera eliminare? Se è così, quando sei sicuro al 100%:
find /usr/local/lib/ -maxdepth 1 -follow -type l -delete
Questo rimuoverà solo i collegamenti interrotti. Per eliminare tutto link, rimuovi il -follow
stanza, ma non lo farei sotto /usr/local/lib
.