Help for this page

Select Code to Download


  1. or download this
    sub wanted {
      -l && !-e && print "bogus link: $File::Find::name\n";
    }
    
  2. or download this
    sub wanted {
      return unless -f && /\.mp3$/;
      print $File::Find::name, "\n";
    }