We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d14363 commit d11b073Copy full SHA for d11b073
README.md
@@ -4,6 +4,10 @@
4
5

6
7
+For example, you could use `raf` to rename GoPro video files so that they sort correctly when listed alphabetically:
8
+```bash
9
+$ raf -d -p 'chap=G[PHXL](\d{2})' -p 'seq=G[PHXL]\d{2}(\d{4})' -o 'GoPro_$seq_$chap$ext' *
10
+```
11
12
## Options:
13
* `--prop -p`: Specifies a regular expression to select a part of the file name and saves its value in the variable name. `<name>=<regex>`
@@ -30,4 +34,3 @@ The padding formatter is triggered with the `%` character and receives two param
30
34
31
35
## TODO
32
36
- [ ] tests tests tests
33
-- [ ] Output formatting, for example $cnt[%03d] to obtain `001`
0 commit comments