in reply to Re: Re: File::Find exit
in thread File::Find exit

Eh... not always.
#!/perl/bin/perl -wl sub x { last } for(1 .. 3) { print; x(); } print "done";
Result:
Exiting subroutine via last at test.pl line 2.
1
done
Here, it's a warning, not a fatal error.