# NBIR — Numeric Bulk Image Renamer
Rename image files in a directory to a sequential numbered scheme (e.g. `base01.jpg`, `base02.png`).
## Installation
From [crates.io](https://crates.io):
```bash
cargo install nbir
```
From source:
```bash
git clone https://github.com/yourusername/simplebulkfilerenamer
cd simplebulkfilerenamer
cargo install --path .
```
## Usage
```bash
nbir --base-name <NAME> [OPTIONS]
```
### Options
| `-b` | `--base-name` | *(required)* | Base name for renamed files (e.g. `spacewallpaper` → `spacewallpaper01.jpg`, `spacewallpaper02.png`) |
| `-d` | `--directory` | `.` | Directory containing images |
| `-y` | `--yes` | `false` | Skip confirmation; rename immediately |
### Examples
Preview renames in the current directory (will ask for confirmation):
```bash
nbir -b vacation
```
Rename immediately without prompting:
```bash
nbir -b vacation -y
```
Target a specific folder:
```bash
nbir -b thumbs -d ~/Pictures/screenshots
```
## Supported formats
`.jpg`, `.jpeg`, `.png`, `.gif`, `.webp`, `.bmp`, `.tiff`, `.tif` (case-insensitive)