in reply to Locating an apache install with Perl
use File::Find; File::Find::find(\&wanted,'/'); sub wanted { die "$File::Find::dir is the apache dir" if $File::Find::name=~/[aA]p +ache\.exe/; } [download]