Author: Stan Eisenstat
Subject: Re: [Cs323] -o and -a
Date: Thursday, 10 Sep 2020, 21:18:38
> Message Posted By: Unknown
>
> [@giraffe hw1]$ /c/cs323/Hwk1/fiend -L -P -L test -name "t" -a -print
> [@giraffe hw1]$ /c/cs323/Hwk1/fiend -L -P -L test -name "t" -a -print -o -print
> test
> test/test.c
> test/test
> test/test/test.c
> test/linktest
> test/linktest/sf
>
> Could you explain why this happens?
> -name "t" returns False
"t" is not a regular expression that matches any of the
file names above. Try "t*" or "*t" or ... .
--Stan-
PREV
INDEX
NEXT