zsh-users
 help / color / mirror / code / Atom feed
From: Guillaume Brunerie <guillaume.brunerie@gmail.com>
To: tartifola@gmail.com
Cc: zsh-users@zsh.org
Subject: Re: generate series of strings
Date: Fri, 9 Jul 2010 15:36:00 +0200	[thread overview]
Message-ID: <AANLkTikjaSGkBzR_aWvhYfFL418ml_x-hbg4qBrzg88w@mail.gmail.com> (raw)
In-Reply-To: <20100709152718.df78ca73.tartifola@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 386 bytes --]

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

  reply	other threads:[~2010-07-09 13:36 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 [this message]
2010-07-09 13:42   ` tartifola
2010-07-09 14:05     ` Joke de Buhr
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=AANLkTikjaSGkBzR_aWvhYfFL418ml_x-hbg4qBrzg88w@mail.gmail.com \
    --to=guillaume.brunerie@gmail.com \
    --cc=tartifola@gmail.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).