ln


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users ln
# 1  
Old 07-08-2003
LN

is there is a way to run single command in a directory with so many symlinks to find which is broken link and which is not?

i know with linux color ls show if it was a red symlink then its broken and if it was lightblue its valid but trying to use mor eeffective way.

Last edited by Bashar; 07-08-2003 at 03:00 AM..
# 2  
Old 07-08-2003
Try

find ./ -type l -follow

It should show errors when hitting bad links.
# 3  
Old 07-09-2003
Thanks Smilie

good trick
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question