bug-findutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: xargs feature request...


From: Bob Proulx
Subject: Re: xargs feature request...
Date: Thu, 21 Apr 2005 21:56:41 -0600
User-agent: Mutt/1.5.9i

Linda A. W. wrote:
>       I think this has been the case a few times.  As for worrying about 
>       quotes within my filenames, yes, it could be a concern, but quotes in 
> file
> names are less likely than spaces in my usage.

But that is just trading one problem for the same problem with a
different field separator character.  Better to avoid it entirely
using zero terminated strings with the -print0 and -0 options.

> >spaces within the filenames are protected by correct quoting, for
> >example "$@".
> ---
>       Would that put double quotes around the entire argument list rather 
>       than each item?

  "$*" is "$1 $2 $3 ..."

  "$@" is "$1" "$2" "$3" ...

Each argument is quoted individually.

Bob




reply via email to

[Prev in Thread] Current Thread [Next in Thread]