zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.w.stephenson@ntlworld.com>
To: zsh-users@zsh.org
Subject: Re: protect spaces and/or globs
Date: Tue, 09 Feb 2021 21:08:47 +0000	[thread overview]
Message-ID: <dd78df51cf46d5bd3c48068bb2e870336780b31d.camel@ntlworld.com> (raw)
In-Reply-To: <a417e71d-f1dd-73ab-6ef0-7ff34e0804fc@eastlink.ca>

On Tue, 2021-02-09 at 12:42 -0800, Ray Andrews wrote:
> grep allow multiple filespecs of course, and if there are spaces they 
> have to be quoted naturally:
> 
> $ grep 'some string' filename 'filename with spaces' more_files*
> 
> My wrapper around grep has a problem with that tho because when I'm 
> grabbing the filespecs if I do something like this:
> 
> while [[ -n "$1" ]]; do
>          ffilespec+=" $1"
>          shift
> done

This is what arrays are for.

unsetopt shwordsplit # leave poor unsuspecting spaces alone
filespec=()

while [[ -n $1 ]]; do
  filespec+=($1)
  shift
done

In this case, actually, all you're doing is the equivalent of
a single array assignment.

filespec=("$@")

pws



  parent reply	other threads:[~2021-02-09 21:09 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-09 20:42 Ray Andrews
2021-02-09 21:05 ` Lawrence Velázquez
2021-02-09 21:08 ` Peter Stephenson [this message]
2021-02-09 23:45   ` Ray Andrews
2021-02-10  0:22     ` Lawrence Velázquez
2021-02-10  0:51       ` Ray Andrews
2021-02-10  1:46         ` Lawrence Velázquez
2021-02-10  2:25           ` Ray Andrews
2021-02-10  2:52             ` Lawrence Velázquez
2021-02-10  1:52         ` Greg Klanderman
2021-02-10  2:29           ` Ray Andrews
2021-02-10 15:18           ` Ray Andrews
2021-02-10 15:47             ` Peter Stephenson
2021-02-10 16:19               ` Ray Andrews
2021-02-10 16:29                 ` Peter Stephenson
2021-02-10 20:53                   ` Ray Andrews
2021-02-10 22:14                     ` Bart Schaefer
2021-02-11 16:31                       ` Ray Andrews
2021-02-11 17:19                         ` Lawrence Velázquez
2021-02-11 19:48                           ` Ray Andrews
2021-02-10 18:08                 ` Bart Schaefer
2021-02-10 20:56                   ` Ray Andrews
2021-02-10 16:28             ` Lawrence Velázquez

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=dd78df51cf46d5bd3c48068bb2e870336780b31d.camel@ntlworld.com \
    --to=p.w.stephenson@ntlworld.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).