https://github.com/destinecarma/continuous-rename
A command-line tool to batch rename files in a folder/directory using a numbered pattern.
https://github.com/destinecarma/continuous-rename
cli files rename tool
Last synced: 4 months ago
JSON representation
A command-line tool to batch rename files in a folder/directory using a numbered pattern.
- Host: GitHub
- URL: https://github.com/destinecarma/continuous-rename
- Owner: DestinEcarma
- License: mit
- Created: 2025-04-12T15:43:19.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-12T16:00:33.000Z (about 1 year ago)
- Last Synced: 2025-11-12T05:20:28.226Z (8 months ago)
- Topics: cli, files, rename, tool
- Language: Rust
- Homepage: https://crates.io/crates/continuous-rename
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Continuous Rename
A command-line tool to batch rename files in a folder/directory using a numbered pattern. The tool is designed to be simple and efficient, allowing users to quickly rename multiple files without the need for complex scripts or manual renaming.
## Usage
Use `{}` as a placeholder for the file number in the pattern. The tool will replace `{}` with the file number, starting from 1.
```sh
continuous-rename path/to/folder pattern-{}
```
This will then query for confirmation before renaming the files. If you want to skip the confirmation step, use the `-y` or `--yes` flag.
```sh
continuous-rename path/to/folder pattern-{} -y
```
## Installation
Install using `cargo`:
```sh
cargo install continuous-rename
```
Build from source:
```sh
git clone https://github.com/DestinEcarma/continuous-rename.git
cd continuous-rename
cargo build --release
mv target/release/continuous-rename /usr/local/bin
```