diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2016-02-02 13:47:27 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2016-02-02 13:47:27 +0100 |
commit | a5631bb6cd97f60f61b857ad365b1853ef6aa487 (patch) | |
tree | a7fca8c728d4ab029fabc6cebbaba9fa327640b7 /lr.1 | |
parent | cd5ea9113c66fca6c7dd49f35188bda8c186dc57 (diff) | |
download | lr-a5631bb6cd97f60f61b857ad365b1853ef6aa487.tar.gz lr-a5631bb6cd97f60f61b857ad365b1853ef6aa487.tar.xz lr-a5631bb6cd97f60f61b857ad365b1853ef6aa487.zip |
allow = instead of ==
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> |