A collection of practical CLI utilities for Windows developers. Save time, automate the boring stuff.
| Tool | Description | Usage |
|---|---|---|
| env-info.sh | Quick system snapshot | ./src/env-info.sh |
| batch-rename.py | Batch rename files with patterns | python src/batch-rename.py ./dir --prefix "new_" --dry-run |
| find-dupes.py | Find and manage duplicate files | python src/find-dupes.py ./dir |
| scaffold.py | Generate project boilerplate | python src/scaffold.py my-project --type python --git |
# Rename all .jpg files with a prefix
python src/batch-rename.py ./photos --prefix "vacation_" --extension .jpg
# Find duplicate files
python src/find-dupes.py ./downloads
# Scaffold a new project
python src/scaffold.py my-api --type python --git- Python 3.6+
- No additional dependencies required
MIT