1to001 is made for padding numbers in filenames automatically. It's written in Python 3.
System-wide installation:
$ pip install 1to001
User installation:
$ pip install --user 1to001
For development code:
$ pip install git+https://github.com/livibetter/1to100.git
$ touch 1.txt 100.txt
$ 1to001 *.txt
+ 001.txt
? ++
perform padding (y/n)? y
1.txt -> 001.txt
-i
(--ignore-case
)When cases are mixed, this option would ignore the cases, for example for files like:
read100me1.TXT read5Me02.txt
They can be renamed to:
1to001 -i *.{txt,TXT} + read005Me02.txt ? ++ + read100me01.TXT ? + perform padding (y/n)?
-y
(--yes
)- Automatic yes to prompts
This project is licensed under the MIT License, see COPYING
.