PREV INDEX NEXT

Author: Unknown
Subject: Order of Operations
Date: Friday, 04 Sep 2020, 20:52:46

Do we have to deal with parentheses for an order of operations? For example, if I wanted to find the following two groups of files:
A) Starts with 't' and ends with '0'
B) Ends with '1'
I would want to do something like:
   ./fiend [location] ( -name 't*' -name '*0' ) -o -name '*1'
Does fiend need to deal with this case?
Also, if the parentheses weren't there, what would be the order of precedence?
PREV INDEX NEXT