in reply to Re^3: File Find question
in thread File Find question
#!/usr/local/bin/perl use strict; use File::Find; my $dirs = '/web/directory/AA'; my $dirs2 = '/web/directory/BB'; my $dirs3 = '/web/directory/CC' find(\&search, $dirs); find(\&search, $dirs2); find(\&search, $dirs3); sub search { print "$File::Find::name\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: File Find question
by Aristotle (Chancellor) on Nov 06, 2002 at 20:41 UTC |