Help for this page

Select Code to Download


  1. or download this
    find(\&wanted, "/usr/home/amarquis");
    
    ...
            $File::Find::prune = 1;
        }
    }
    
  2. or download this
    sub wanted {
        # Prune this directory so we don't recurse farther,
    ...
        print $File::Find::name . "\n";
    
    }