zsh-users
 help / color / mirror / code / Atom feed
From: Joke de Buhr <joke@seiken.de>
To: zsh-users@zsh.org
Subject: Re: generate series of strings
Date: Fri, 9 Jul 2010 16:05:13 +0200	[thread overview]
Message-ID: <201007091605.15291.joke@seiken.de> (raw)
In-Reply-To: <20100709154246.2f2fe276.tartifola@gmail.com>

[-- Attachment #1: Type: Text/Plain, Size: 1157 bytes --]

On Friday 09 July 2010 15:42:46 tartifola@gmail.com wrote:
> On Fri, 9 Jul 2010 15:36:00 +0200
> 
> Guillaume Brunerie <guillaume.brunerie@gmail.com> wrote:
> > 2010/7/9 <tartifola@gmail.com>
> > 
> > > Hi,
> > > is there a way to obtain from the command line a series of strings like
> > > 
> > > (1:3) (4:6) (7:9)...
> > > 
> > > always with the same increment. I'm playing with 'seq' and 'sed' but
> > > perhaps it's not the best approach.
> > > Thanks,
> > > A.
> > 
> > Hi,
> > You can use a for-loop :
> > 
> > for (( i = 0; i < 5; i++ ))
> > do
> > 
> >     echo -n "($(( 3 * i + 1 )):$(( 3 * i + 3))) "
> > 
> > done
> 
> Thanks for your help, it works perfectly. Just a curiosity, any possible
> solution without a loop for?

Actually there is a solution without loops. But it not as nice as a looping 
solution (for, while, until, ...). You can use recursive functions as a loop-
replacement. But it's not as easy as a for-loop.


## recursive function
expand() {
    (( $1 < 0 )) && return

    print -n "$(expand $(($1 - 1))) ($((3 * $1 + 1)):$((3 * $1 + 3)))" 
}

## call recursive function
expand 20

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 706 bytes --]

  reply	other threads:[~2010-07-09 14:11 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-09 13:27 tartifola
2010-07-09 13:36 ` Guillaume Brunerie
2010-07-09 13:42   ` tartifola
2010-07-09 14:05     ` Joke de Buhr [this message]
2010-07-09 20:26     ` Jérémie Roquet
2010-07-10 17:29       ` Bart Schaefer
2010-07-10 17:42         ` Jérémie Roquet

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=201007091605.15291.joke@seiken.de \
    --to=joke@seiken.de \
    --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).