zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: Repeat argument N times?
Date: Tue, 29 Jul 2014 23:48:30 -0700	[thread overview]
Message-ID: <140729234830.ZM20800@torch.brasslantern.com> (raw)
In-Reply-To: <CAB2RFrTi87pBHeQD3y_JXf2LMyVCeRLCzMF+EmF73jp_hDkdxg@mail.gmail.com>

On Jul 29, 11:12pm, Benjamin R. Haskell wrote:
} 
} Is there a built-in way to repeat an argument N times?

Not really.  You have to admit it's a rather unusual thing to do.  It
can be done by abusing other expansions, as you've discovered.
 
} It'd be nice if I could write (something like):
} 
}     upload-files file1(N3) file2(N10) file3(N4)

You can create an array of N empty elements just by assigning to the
Nth position:

    N[100]=()

And then:

    upload-files file1$^N[1,3] file2$^N[1,10] file3$^N[1,4]

Works up to however much memory you're willing to waste on allocating
empty array slots.

There are other ways, e.g.

    upload-files file2${^${:-{1..10}}/*/}

    upload-files file2(e{'repeat 10 reply+=($REPLY)'})

though the latter requires "file2" to actually exist, which sometimes
might be a good thing.


  reply	other threads:[~2014-07-30  6:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-30  3:12 Benjamin R. Haskell
2014-07-30  6:48 ` Bart Schaefer [this message]
2014-07-30  8:56   ` Peter Stephenson
2014-07-30 14:10     ` Roman Neuhauser
2014-07-30 14:41       ` Roman Neuhauser
2014-07-31 15:59   ` Mikael Magnusson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=140729234830.ZM20800@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).