Hi Stefano,

On 22 Nov 2011, at 02:52, Stefano Lattarini wrote:
> Hi Gary.  Just a quick nit (I haven't looked at the whole
> series, and not even at the whole patch in fact; sorry).

No apologies necessary, every little helps!  Thank you.

> On Monday 21 November 2011, Gary V wrote:
>>    for file
>>     do
>> -      test -f $file || touch $file
>> +      test -f "$file" || touch $file
>> 
> What's the point of quoting file after `test -f' it it remains
> unquoted after `touch'?

Even though we know there is no whitespace in $file because of the
for loop, there still might be other shell meta-characters in there.
All uses of $file (including a bunch in the following lines) should
be quoted correctly, but that is another patch.

Cheers,
-- 
Gary V. Vaughan (gary AT gnu DOT org)

Reply via email to