https://github.com/soft/bulkrename
bulkrename is a tool for renaming large numbers of files
https://github.com/soft/bulkrename
command-line file-management rename-files renamer
Last synced: about 2 months ago
JSON representation
bulkrename is a tool for renaming large numbers of files
- Host: GitHub
- URL: https://github.com/soft/bulkrename
- Owner: Soft
- License: mit
- Created: 2020-09-12T12:16:20.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-13T13:19:56.000Z (almost 6 years ago)
- Last Synced: 2025-07-01T10:54:00.441Z (12 months ago)
- Topics: command-line, file-management, rename-files, renamer
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bulkrename
[](https://travis-ci.org/Soft/bulkrename)
[](https://github.com/Soft/bulkrename/releases)
[](https://crates.io/crates/bulkrename)
[](https://opensource.org/licenses/MIT)
`bulkrename` is a tool for renaming large numbers of files.
`bulkrename` accepts file paths either via command line arguments or via
standard input. When invoked, `bulkrename` opens a file in `EDITOR` with the
input paths. After user exits `EDITOR`, `bulkrename` will rename all the input
files using the file names from the file as their new names.
If you are familiar with the `bulkrename` command of the
[Ranger](https://github.com/ranger/ranger) file manager, this program works
basically the same way.
## Installation
Pre-built binaries can be downloaded from [GitHub
Releases](https://github.com/Soft/bulkrename/releases). These should work on any
64-bit Linux system.
Alternatively, `bulkrename` can be installed using
[Cargo](https://doc.rust-lang.org/cargo/):
``` shell
cargo install bulkrename
```
## Usage
```
usage: bulkrename [-h|--help] [FILE]...
bulkrename is a tool for renaming large numbers of files.
options:
-h, --help: display this help
-r, --replace: allow replacing existing files
-q, --quiet: do not display information about operations being performed
```
## Examples
``` shell
bulkrename file-1.txt file-2.txt file-3.txt
find examples | bulkrename
```