zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: Apparent inconsistency in f/z expansion flags behavior
Date: Sun, 18 Dec 2016 18:08:07 -0800	[thread overview]
Message-ID: <161218180807.ZM5238@torch.brasslantern.com> (raw)
In-Reply-To: <CAAiKvi0Ge4-9016srG4K5-3-VnwCXN5FcKtsjGtE6GjG8ZwGsA@mail.gmail.com>

On Dec 18,  8:02pm, Pablo Lalloni wrote:
} 
} words=(${(z)$(</proc/meminfo)})
} 
} Which set words with the array of all the words in the file and that's
} great.
} 
} lines=(${(f)$(</proc/meminfo)})
} 
} But then I get an array with just one string containing all the lines
} concatenated (no NLs).

That's happening because $(</proc/meminfo) has replaced all the NLs with
spaces before (z) or (f) begin working.  (z) doesn't care because it
splits on shell-syntax whitespace, but (f) has nothing to split on.

To get what you want, you have to quote the $(...) substitution so the
NLs are preserved:

    lines=(${(f)"$(</proc/meminfo)"})

That would be "more correct" in the (z) use as well, just in case the
line breaks were e.g. inside quoted strings that would change the shell
parse.  (Not an issue with /proc/meminfo, of course, but in general.)

} Note that if you split the last assignment in 2 steps, it works as expected:
} 
} lines=$(</proc/meminfo)
} lines=(${(f)lines})

There you've done first an assignment to a scalar, which preserves the
NLs as if $(...) were quoted.


  parent reply	other threads:[~2016-12-19  2:08 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-18 23:02 Pablo Lalloni
2016-12-18 23:29 ` Jim
2016-12-19  2:08 ` Bart Schaefer [this message]
2016-12-19 15:02   ` Pablo Lalloni

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=161218180807.ZM5238@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).