It's the difference between shell expansion using * and ..., well, readdir.

perldoc perlop, perldoc -f glob, and perldoc File::Glob
has a lot of info about <> and its many behaviors. As you're using it with foreach, you're globing in list context, using glob behavior as per a /bin/csh. I poked through man csh a bit, but can't find a documented reason why an asterisk would ignore dotfiles. When I'm in csh and bash, a ls /dir/* also ignores dotfiles, so I guess it's working as expected.

readdir, on the other hand, probably uses the readdir system call, documented in man 3 readdir. It actually reads the directory as a file, which is a list of inodes and always contains . and .. as entries.

As far as the code tags... no idea. there's probably some page with instructions for writeups we should have read somewhere. I just lurked for a bit and copied people ;)


In reply to Re: foreach and opendir differences by jpeg
in thread foreach and opendir differences by dobby

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.