1834594 Members
3928 Online
110069 Solutions
New Discussion

Re: Links

 
SOLVED
Go to solution
bbutler3295
Occasional Advisor

Links

Hp UX 10.20
Is there a way to search the box for all of the directory links
Reboot and let me know in twenty
2 REPLIES 2
harry d brown jr
Honored Contributor
Solution

Re: Links


find . -type l -exec file {} \; | grep "directory$"


live free or die
harry
Live Free or Die
Jordan Bean
Honored Contributor

Re: Links

In the POSIX, Korn, and BASH shells:

find . -type l | while read dir
do
[[ -d $dir && -L $dir ]] && echo $dir
done