9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Alexander Kapshuk <alexander.kapshuk@gmail.com>
To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net>
Subject: Re: [9fans] simple rc problem in p9p (on OpenBSD)
Date: Thu, 26 Apr 2018 17:57:26 +0300	[thread overview]
Message-ID: <CAJ1xhMWLyM2JuKowpPFuzgWUfDYj=g_p0QgQt1hWQ1KME_16Mg@mail.gmail.com> (raw)
In-Reply-To: <CAOEdRO35rOrixKjZiggGFAakA341qYbRZwWODFhre1yreq_kfg@mail.gmail.com>

On Thu, Apr 26, 2018 at 5:45 PM, Rudolf Sykora <rudolf.sykora@gmail.com> wrote:
> Hello
>
> I, using OpenBSD's p9p, see this
>
> % w='A
>     B
>     C'
> % echo $w
> A
> B
> C
> % for(i in $w) {echo $i; echo XXX}
> A
> B
> C
> XXX
>
> ie, w in for is taken as just one argument instead of
> 3. What can I do with it?
>
> I haven't modified ifs (it should be \n space and tab).
> (How can I check, say see the character codes?)
>
> Thanks for comments
> Ruda
>

Here, $w's value is a string.
% w='A
B
C'
% echo $#w
1

And here, it's a list.
% w=(A B C)
% echo $#w
3
% for(i in $w) {echo $i; echo XXX}
A
XXX
B
XXX
C
XXX



  parent reply	other threads:[~2018-04-26 14:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-26 14:45 Rudolf Sykora
2018-04-26 14:54 ` Lucio De Re
2018-04-26 15:08   ` Rudolf Sykora
2018-04-26 15:29     ` Alexander Kapshuk
2018-04-26 15:48       ` Benjamin Purcell
2018-04-26 18:36         ` Rudolf Sykora
2018-04-26 19:01           ` Costin Chirvasuta
2018-04-26 20:50             ` Rudolf Sykora
2018-05-22 19:57             ` Ethan A. Gardener
2018-04-26 14:57 ` Alexander Kapshuk [this message]
2018-04-26 15:02 ` Teodoro Santoni
2018-04-26 15:10   ` Rudolf Sykora
2018-04-26 15:20 ` dexen deVries
2018-04-26 15:31   ` Rudolf Sykora

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='CAJ1xhMWLyM2JuKowpPFuzgWUfDYj=g_p0QgQt1hWQ1KME_16Mg@mail.gmail.com' \
    --to=alexander.kapshuk@gmail.com \
    --cc=9fans@9fans.net \
    /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.
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).