how dangerous is this command ? delete orphaned symlinks.
by ////// from LinuxQuestions.org on (#5DY6A)
arch linux wiki says :
Quote:
and on *unix.stackexchange.com there is this command :
Code:find . -xtype l -[delete]how do i inspect which symlinks are ok?
*https://unix.stackexchange.com/quest...inks-in-one-go


Quote:
Broken symlinks Old, broken symbolic links might be sitting around your system; you should remove them. Examples on achieving this can be found here and here. However, you should not blindly delete all broken symbolic links, as some of them serve a purpose [1]. To quickly list all the broken symlinks of your system, use: Code:# find / -xtype l -printThen inspect and remove unnecessary entries from this list. |
and on *unix.stackexchange.com there is this command :
Code:find . -xtype l -[delete]how do i inspect which symlinks are ok?
*https://unix.stackexchange.com/quest...inks-in-one-go