diff options
author | Steph Enders <smenders@gmail.com> | 2023-02-26 22:06:40 -0500 |
---|---|---|
committer | Steph Enders <smenders@gmail.com> | 2023-02-26 22:06:40 -0500 |
commit | 9c137d4a179b38f7187e296ae3b0303f5e479c60 (patch) | |
tree | e06f5db7e99863d3a56c324b384f0819c34449af /.gitignore | |
parent | 0791c354995775becf558f4b0031daf55477f88f (diff) |
Support splitting files with --- / added tests
Added some tests to verify that you can now split your files with --- to
join multiple queries into a single file. This could be for if you have
two separate regexes to run or even two sources you want to run the same
query against.
Example file:
```example.conf
query=.*example.conf$
source=/path/to/example/
target=/path/to/dest/
---
query=.*different.csv$
soruce=/path/to/different/
target=/path/to/dest/
```
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1 +1,3 @@ automv.d +test/src +test/dest |