diff options
Diffstat (limited to 'lr.1')
-rw-r--r-- | lr.1 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lr.1 b/lr.1 index 2578b2d..880d69f 100644 --- a/lr.1 +++ b/lr.1 @@ -224,7 +224,7 @@ tests are given by the following EBNF: <numprop> ::= depth | dev | entries | gid | inode | links | mode | rdev | size | total | uid -<numop> ::= <= | < | >= | > | == | != +<numop> ::= <= | < | >= | > | == | = | != <dur> ::= "./path" -- mtime of relative path | "/path" -- mtime of absolute path @@ -247,7 +247,7 @@ tests are given by the following EBNF: <strprop> ::= fstype | group | name | path | target | user -<strop> ::= == -- string equality +<strop> ::= == | = -- string equality | === -- case insensitive string equality | ~~ -- glob (fnmatch) | ~~~ -- case insensitive glob (fnmatch) @@ -256,9 +256,9 @@ tests are given by the following EBNF: <str> ::= " ([^"] | "")+ " -- use "" for a single " inside " -<typetest> ::= type == ( b | c | d | p | f | l ) +<typetest> ::= type ( == | = ) ( b | c | d | p | f | l ) -<modetest> ::= mode ( == -- exact permissions +<modetest> ::= mode ( == | = -- exact permissions | & -- check if all bits of <octal> set | | -- check if any bit of <octal> set ) <octal> |