I'd like to mention that the "ls -1 a/" example was an overly simplistic example.

A better example might be:

> mydiff "cleartool lsprivate -tag view1 | egrep '\.o$|\.oo$|\.so$|\.d$' | xargs cleartool ls -short -dir" "cleartool lsprivate -tag view2 | egrep '\.o$|\.oo$|\.so$|\.d$' | xargs cleartool ls -short -dir"

I made this up, but it's not totally unreasonable. The only difference between the 2 command lines is the tag name (view1 vs view2). If this were a commonly needed command, it would most likely be turned into an alias (or another script pointed to by that user's path), thus we would have:

> mydiff "mylist view1" "mylist view2"

Of course, this all depends on being able to run the @ARGV elements as if they were run directly from the parent shell.

In reply to Re^2: spawning shell commands with aliases by xafwodahs
in thread spawning shell commands with aliases by xafwodahs

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.