summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteph Enders <smenders@gmail.com>2023-02-26 22:40:20 -0500
committerSteph Enders <smenders@gmail.com>2023-02-26 22:40:20 -0500
commitd42ce343451bbafa278d0107f11a469017f00367 (patch)
treed6855c8a45bbb2987f0bfce67ae33ccf2ee75b8b
parentec1d4b49dbf66284f98cd12c646a21046bb53975 (diff)
Document multi confHEADmaster
-rw-r--r--readme.txt19
1 files changed, 18 insertions, 1 deletions
diff --git a/readme.txt b/readme.txt
index 0a35be0..0e3223d 100644
--- a/readme.txt
+++ b/readme.txt
@@ -52,6 +52,23 @@ query=.*\.jp[e]?g
source=/home/user/Downloads/
target=/home/user/Pictures/
+example multi query conf
+========================
+
+# picturemv.conf
+# jpeg/jpg
+query.*\.jp[e]?g$
+source/home/user/Downloads/
+target=/home/user/Pictures/
+---
+query=.*\.png$
+source=/home/user/Downloads/
+target=/home/user/Pictures/
+---
+query=.*\.webp
+source=/home/user/Downloads/
+target=/dev/null
+
Nice to haves / Tasks to be done
================================
@@ -60,5 +77,5 @@ Nice to haves / Tasks to be done
[ ] More flexibility / configurability
[ ] Fault tolerance
[ ] Auto mkdir -p if the target dir doesn't exist?
-[ ] Multiple queries per file? What if you have diverging regexes? does find support ORs?
+[x] Multiple queries per file? What if you have diverging regexes? does find support ORs?