zsh-users
 help / color / mirror / code / Atom feed
* Apparent inconsistency in f/z expansion flags behavior
@ 2016-12-18 23:02 Pablo Lalloni
  2016-12-18 23:29 ` Jim
  2016-12-19  2:08 ` Bart Schaefer
  0 siblings, 2 replies; 4+ messages in thread
From: Pablo Lalloni @ 2016-12-18 23:02 UTC (permalink / raw)
  To: zsh-users

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

Hello there!

I'm seeing an unexpected (to me) difference in the behavior of these flags.

Say you do something like:

words=(${(z)$(</proc/meminfo)})

Which set words with the array of all the words in the file and that's
great.

Then I try the f flag in place of z, expecting to get an array with the
file's lines:

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

But then I get an array with just one string containing all the lines
concatenated (no NLs).

So... Is this expected? What I need to do to get the array of lines?

Note that if you split the last assignment in 2 steps, it works as expected:

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

Which is ok, but of course anybody would want to do it in one step, right?

Cheers!

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-12-19 15:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-18 23:02 Apparent inconsistency in f/z expansion flags behavior Pablo Lalloni
2016-12-18 23:29 ` Jim
2016-12-19  2:08 ` Bart Schaefer
2016-12-19 15:02   ` Pablo Lalloni

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).