bug-bash
[Top][All Lists]
Advanced

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

Re: extension of file-test primitives?


From: Chet Ramey
Subject: Re: extension of file-test primitives?
Date: Wed, 23 Aug 2017 10:02:40 -0400
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.3.0

On 8/23/17 9:51 AM, Dethrophes wrote:

>>>> if testfile -fx file;then.
>>>
>>> Add the quotes, make opt local too, and I think we have a winner.
>> This has the advantage of supporting both syntax options: a single
>> option with multiple operators or a series of options, each with one
>> or more operators, combined with a single operand.
> 
> Not really as it changes the meaning of 
> test -f file -a -x file

It is not a drop-in replacement for test; it is syntactic sugar for
compound test operations. If you're concerned about this, add a test
before the loop to ensure that there are only two arguments to the function
and restrict it to that syntax option only.

> Which I always understood as the correct way of doing this in the first 
> place...

It's not as good as multiple test commands: test -f file && test -x file.
There's no ambiguity and you get short-circuiting.

-- 
``The lyf so short, the craft so long to lerne.'' - Chaucer
                 ``Ars longa, vita brevis'' - Hippocrates
Chet Ramey, UTech, CWRU    chet@case.edu    http://cnswww.cns.cwru.edu/~chet/



reply via email to

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