Help for this page

Select Code to Download


  1. or download this
    return unless $File::Find::dir =~ /[IPD]\d{8}$/;
    
  2. or download this
    sub dir_names
    {
    ...
        return unless $_ =~ /[IPD]\d{8}$/;
        $dirs{$File::Find::name} = 1;
    }
    
  3. or download this
    sub dir_names
    {
    ...
        return unless /[IPD]\d{8}$/;
        $dirs{$File::Find::name} = 1;
    }