Interactive rename tool
shell
cargo install irename
Rename a bunch of files ```
irename some/dir/*.txt ```
Execute in dry-run
mode
```
irename --dry-run some/dir/*.txt ```
Output of dry-run
mode can be piped
```
irename --dry-run some/dir/*.txt | parallel -n1 ```
P.S.: The app will exit with an error if there are some conflicting names.
It won't destruct your files as GNU rename
does
``` irename 0.1.0
USAGE:
irename [OPTIONS]
ARGS:
OPTIONS:
--dry-run only print shell commands w/o executing them
-h, --help Print help information
--regex
Tab
- switch between regex
and replacement
text input areasEnter
- execute renamingCtrl-c
- exitCtrl-d/Ctrl-u