4 releases
0.1.5 | Mar 31, 2023 |
---|---|
0.1.4 | Mar 31, 2023 |
#1628 in Command line utilities
66 downloads per month
8KB
121 lines
batch_rename(br)
A command line tool for batch renaming files in a directory.
Documentation quick links
Installtion
To install this tool using cargo, run the following command in your terminal:
cargo install batch_rename
Make sure you have Rust and Cargo installed on your system before running this command.
Usage
To use batch_rename
, run the command followed by the desired options:
br [OPTIONS]
Options
--path <path>
: The path to the directory containing the files to rename.--prefix <prefix>
: The prefix to add to the file names.--postfix <postfix>
: The postfix to add to the file names.--replace <old> <new>
: Replace the old string in the file names with the new string.--new <name>
: Use a new name for the files, with a number appended to each file name.--help
: Print this help message.
Example
Add a prefix "new_" to all files in the directory "/path/to/directory":
br --path /path/to/directory --prefix new_
Replace all occurrences of "old" with "new" in the file names of the directory "/path/to/directory":
br --path /path/to/directory --replace old new
Use a new name "file" for all files in the directory "/path/to/directory", with a number appended to each file name:
br --path /path/to/directory --new file