Find.find does not seem to find orphaned links:
Downloads>ln -s /nonexistent
Downloads>ls -l
total 0
lrwxrwxrwx 1 wybo users 12 Nov 15 14:15 nonexistent -> /nonexistent
Downloads>irb
irb(main):001:0> require ‘find’
=> true
irb(main):002:0> Find.find(’.’) do |f| puts f end
.
=> nil
irb(main):003:0>
Is this a bug?