in reply to Re: Recursively run another script
in thread Recursively run another script

Ok. Um - yes. That is *way* more elegant than my code.

However, my code has no dependencies - which is important to me, at least, because (for reasons I'd rather not go into because they're bad for my blood-pressure) I can't use modules at work, which is where I use the code.

Replies are listed 'Best First'.
Re^3: Recursively run another script
by Aristotle (Chancellor) on Aug 08, 2003 at 12:04 UTC
    File::Find has been in the Perl core distribution forever. That's not a dependency any more than requiring a perl interpreter is a dependency.

    Makeshifts last the longest.

Re: Re: Re: Recursively run another script
by sweetblood (Prior) on Aug 08, 2003 at 15:05 UTC
    You code is quite dependant on os. If you wanted to avoid file::find you should at least use opendir to get your file list. But really in the end you'll be much better off if you get comfy with file::find