in reply to Re: Re: parsing directory glob in config file
in thread parsing directory glob in config file

You'll need to split the path at each wildcard, expand each level, concatenate the next piece to each result, and so forth. That's not particularly fun, but hey, you'll be learning!

  • Comment on Re: Re: Re: parsing directory glob in config file

Replies are listed 'Best First'.
Re: Re: Re: Re: parsing directory glob in config file
by gnu@perl (Pilgrim) on Sep 13, 2002 at 20:22 UTC
    Yeah, that was the first idea, and it is still an option. I was hoping to find some ultracool superslick way (I'm lazy) to do this. Thanks for the input, it's appreciated.