- or download this
grep DONE: File/Find.pm
- or download this
File::Find::find( sub { ... goto My::Package::FOUND ... } ... );
My::Package::FOUND:
....
- or download this
BEGIN {
my( $dot, $up )= ( File::Spec->curdir(), File::Spec->updir() );
...
chdir $up or die "Can't chdir .. from $path: $!\n";
}
}
- or download this
#!/usr/bin/perl -w
use strict;
...
print $_, $/ for @Found;
}
}