in reply to Re: Regex Question
in thread Regex Question

Thanks moritz. I have the Config::INI::Simple part covered but woiuld appreciate more help on the glob piece.

I looked at some examples but still not sure how to code it.

Replies are listed 'Best First'.
Re^3: Regex Question
by moritz (Cardinal) on Mar 11, 2008 at 12:57 UTC
    It's not that hard:
    my @matched_files = glob $pattern;

    glob expands shell "patterns" like a star * to all files, '..' to the parent directory, ~ to the home directory and so on.