summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-02-02 13:47:27 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2016-02-02 13:47:27 +0100
commita5631bb6cd97f60f61b857ad365b1853ef6aa487 (patch)
treea7fca8c728d4ab029fabc6cebbaba9fa327640b7 /README.md
parentcd5ea9113c66fca6c7dd49f35188bda8c186dc57 (diff)
downloadlr-a5631bb6cd97f60f61b857ad365b1853ef6aa487.tar.gz
lr-a5631bb6cd97f60f61b857ad365b1853ef6aa487.tar.xz
lr-a5631bb6cd97f60f61b857ad365b1853ef6aa487.zip
allow = instead of ==
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 67f7d42..4ba11d3 100644
--- a/README.md
+++ b/README.md
@@ -136,7 +136,7 @@ Default: `n`.
 	<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
@@ -159,7 +159,7 @@ Default: `n`.
 	
 	<strprop>  ::= fstype | group | name | path | target | user
 	
-	<strop>    ::= ==                -- string equality
+	<strop>    ::= == | =            -- string equality
 	             | ===               -- case insensitive string equality
 	             | ~~                -- glob (fnmatch)
 	             | ~~~               -- case insensitive glob (fnmatch)
@@ -168,9 +168,9 @@ Default: `n`.
 	
 	<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>