Find Broken Symlinks

perl -le 'foreach(<*>){ -l && !-e && print}'
perl -MFile::Find -le 'find(sub { -l && !-e &&
  print $File::Find::name }, ".")';