PREV INDEX NEXT

Author: Stan Eisenstat
Subject: Re: [Cs323] operators
Date: Friday, 04 Sep 2020, 07:33:13


    > Message Posted By: Unknown
    >
    > Can you give an example of -o and -a operators?

The command

  % ./fiend . -name FOO -o -newer BAR

will print all files whose local name is FOO OR that are
newer than BAR.

The command

  % ./fiend . -name FOO -a -newer BAR

will print all files whose local name is FOO AND that are
newer than BAR.

--Stan-
PREV INDEX NEXT