On Thursday 07 February 2013 06:32:54 Armin Pirkovitsch wrote:
> # find /usr/ports -name Makefile | xargs grep -R FEATURES | wc -l
>       82
> # find /usr/ports -name Makefile | xargs grep -R USES | wc -l
>       20
> 
> Sounds to me like there are less false positives for USES.

Add -w and USES wins:
$ find /usr/ports -name Makefile | xargs grep -Rw FEATURES | wc -l
      37
$ find /usr/ports -name Makefile | xargs grep -Rw USES | wc -l
       0
-- 
Alberto Villa, FreeBSD committer <avi...@freebsd.org>
http://people.FreeBSD.org/~avilla

        "Hawk, we're going to die."
        "Never say die... and certainly never say we."
                -- M*A*S*H

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to