buckaduck,

The <Q.PACES*> will work in more instances than anything that that uses shell metacharacters. There are possible two limits you can reach here - the size of the command line your shell can read and two, the maximum number of arguments your exec can handle (getconf ARG_MAX). Most shells will bomb out because you reach the max for the command line buffer (expansion first by shell then exec). For those that don't hard code the cl buffer, you're going to hit the exec max.

The perlfunc:glob function used to use csh to do it's trick but now it uses File::Glob to do it's work. Since that is is based on the bsd glob (man 3 glob) it should work up to your max mem (or there about).

That being said, you do need to be careful using glob and the solutions that minimize memory (find, ls | grep, etc) are probably much better implementations if you're going to be doing a lot of this thing.

-derby


In reply to Re: Re: VVP:Perl oneliners for Unix commands by derby
in thread VVP:Perl oneliners for Unix commands by vivekvp

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.