The glob function seems to work that way for me too. Here's a quick/easy work-around:
#!/opt/perl5/current/bin/perl chdir "/tmp/test"; $CONFIG = "some_string_with_no_filename_wildcards"; @files = glob("$CONFIG"); foreach $file (@files) { next unless -e $file; print "$file \n"; }
Or you could do it like this:
foreach $file ( grep {-e} @files ) { print "$file\n"; }

UPDATE: Actually, since the whole point of the "glob()" function (and the File::Glob module that implements it) is only to do file name expansions on strings that contain various kinds of regex-like wild-card matching directives, there is no point in using this function at all when a string does not contain any of these directives.

So, if your config file uses just a simple set of wild-card-type things (like "*" and "?"), it might be better to only invoke glob() when one of those things is present in the string. Otherwise, just just the "-e" operator on the string:

@files = ( $CONFIG =~ /[*?]/ ) ? glob( $CONFIG ) : ( -e $CONFIG ) ? ( +$CONFIG ) : ();

In reply to Re: glob pattern matching by graff
in thread glob pattern matching by KevinBr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.