in reply to File::Glob Ignores Dot Files

They take regexes as arguments and * doesn't work the same way as in your shell. Try '/.*' at the end.

Updated: Oops. Listen to the above monks. It's not a regexp. Note also that their code will return . and .. and you might want a grep to exclude them.

Replies are listed 'Best First'.
Re: Re: File::Glob Ignores Dot Files
by ZdrozZ (Scribe) on Nov 26, 2003 at 10:09 UTC
    In shell commands I use .[!.]* It works if you don't have files with two leading ..