zsh-workers
 help / color / mirror / code / Atom feed
* Shell argument splitting behaviour
@ 2008-10-01 13:02 Peter Stephenson
  2008-10-03 13:56 ` Peter Stephenson
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Stephenson @ 2008-10-01 13:02 UTC (permalink / raw)
  To: Zsh hackers list

I disovered this inconvenience in the parameter splitting flag (z) which
splits words in a similar way to how command line arguments are handled.

  foo="(one) (two) (three)"
  print -l ${(z)foo}

prints

  (
  one
  )
  (two)
  (three)

That's because the command word in the line is treated differently; in
this case, it looks like the start of a subshell.  I wasn't expecting it
when splitting a string, because it's just an arbitrary set of words,
and my first reaction was to change it (which is easy enough) but I
suppose you can think of it as a feature.  The same feature occurs when
the line editor splits arguments: in insert-last-word and
copy-prev-shell-word.  In those cases the current behaviour is right,
although it'll only rarely make a difference.

I thought I'd mention it in case anyone else had any reactions.

What I was trying to do was use this to get lisp-like lists of
arguments (since after the first word parentheses have to be balanced),
but I can get that to work just by putting a dummy word in front, so
it's actually not a major concern.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


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

end of thread, other threads:[~2008-10-03 13:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-01 13:02 Shell argument splitting behaviour Peter Stephenson
2008-10-03 13:56 ` Peter Stephenson

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