RnR is a command-line tool to securely rename multiple files and directories that supports regular expressions.
You can download binaries from latest release page, choose the compressed file corresponding to your platform. These compressed files contain the executable and other additional content such as completion files (Bash, Zsh, fish and PowerShell).
A package is available in the AUR
(rnr
) to install latest version of
RnR on Arch Linux.
RnR is written in Rust. You can build it from source using Cargo.
sh
git clone https://github.com/ChuckDaniels87/rnr .
cargo install
sh
cargo install rnr
```
USAGE:
rnr [FLAGS] [OPTIONS]
FLAGS: -b, --backup Generate file backups before renaming -n, --dry-run Only show what would be done (default mode) --dump Force dumping operations into a file even in dry-run mode -f, --force Make actual changes to files -h, --help Prints help information -x, --hidden Include hidden files and directories -D, --include-dirs Rename matching directories --no-dump Do not dump operations into a file -r, --recursive Recursive mode -s, --silent Do not print any information -V, --version Prints version information
OPTIONS:
--color
ARGS:
SUBCOMMANDS:
from-file Read operations from a dump file
help Prints this message or the help of the given subcommand(s)
``` You can pass a list of files to be renamed as arguments:
Directories are ignored by default but you can also include them to be renamed using the option The replacement limit is set to 1 by default, but you can configure this limit
to replace multiple non-overlapping matches. All matches will be replaced if
this option is set to 0. You can combine If recursive ( Similarly, you can set a maximum directory depth in combination with recursive operations.
When you perform a renaming operation, Rename operation
If you want to redo the operation just pass the dump file without any additional argument:
```sh
rnr from-file -f rnr-[timestamp].json ``` Original tree
More info about regex used in the Swap group 1 (name) and group 2 (number).
Capture two digits as Default behavior
regex
crate. You can check regex syntax
here. It supports numbered and named capture
groups.from-file
subcommand.Demo
Examples
Rename a list of files
sh
rnr -f file renamed ./file-01.txt ./one/file-02.txt ./one/file-03.txt
Original tree
.
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── one
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── renamed-01.txt
├── file-02.txt
├── file-03.txt
└── one
├── file-01.txt
├── renamed-02.txt
└── renamed-03.txt
Include directories
-D
.
sh
rnr -f -D foo bar ./*
Original tree
.
├── foo
│ └── foo.txt
└── foo.txt
Renamed tree
.
├── bar
│ └── foo.txt
└── bar.txt
Multiple replacements
sh
rnr -f -l 0 o u ./*
Original tree
.
├── foo
│ └── foo.txt
└── foo.txt
Renamed tree
.
├── foo
│ └── fuu.txt
└── fuu.txt
Combination with other UNIX tools
rnr
with other UNIX tools using pipes to pass arguments.Find files older than 1 day and rename them
sh
find . -type f +mtime 1 | xargs rnr -f file renamed
Read list of files from a file
sh
cat file_list.txt | xargs rnr -f file rename
file_list.txt
content:
file-01.txt
one/file-02.txt
one/file-03.txt
Recursive rename
-r
) option is passed, rnr
will look for al files in the path recursively without depth limit.
sh
rnr -f -r file renamed ./
Original tree
.
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── one
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── two
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── three
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── renamed-01.txt
├── renamed-02.txt
├── renamed-03.txt
└── one
├── renamed-01.txt
├── renamed-02.txt
├── renamed-03.txt
└── two
├── renamed-01.txt
├── renamed-02.txt
├── renamed-03.txt
└── three
├── renamed-01.txt
├── renamed-02.txt
└── renamed-03.txt
Recursive rename with max directory depth
sh
rnr -f -r -d 2 file renamed ./
Original tree
.
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── one
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── two
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── three
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── renamed-01.txt
├── renamed-02.txt
├── renamed-03.txt
└── one
├── renamed-01.txt
├── renamed-02.txt
├── renamed-03.txt
└── two
├── file-01.txt
├── file-02.txt
├── file-03.txt
└── three
├── file-01.txt
├── file-02.txt
└── file-03.txt
Recursive rename including directories and hidden files
rnr
ignore hidden files by default to speed up the operations and avoid problems with some particular directories like .git/
or .local/
. You can include hidden files passing -x
option. Also, you can use include directories -D
option with -r
too.
sh
rnr -f -r
Original tree
.
├── .foo_hidden_file.txt
├── foo.txt
├── foo
│ ├── foo.txt
│ └── foo
│ └── foo.txt
└── .foo_hidden_dir
└── foo.txt
Renamed tree
.
├── .bar_hidden_file.txt
├── bar.txt
├── bar
│ ├── bar.txt
│ └── bar
│ └── bar.txt
└── .bar_hidden_dir
└── bar.txt
Undo/redo operations using dump file
rnr
will create by default a dump file in the current directory you executed the command. This file can be used to easily revert the operations using from-file
and -u
option.sh
rnr -f foo bar ./*
Undo previous operation
sh
rnr from-file -f -u rnr-[timestamp].json
Create backup files before renaming
rnr
can create backup files before renaming for any operation passing -b
option. The backup files names are ensured to be unique and won't be overwritten if another backup is created. If you are working with many large files, take into account that files will be duplicated.sh
rnr -f -b file renamed ./*
.
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── file-01.txt.bk
├── file-02.txt.bk
├── file-03.txt.bk
├── renamed-01.txt
├── renamed-02.txt
└── renamed-03.txt
Advanced regex examples
regex
package.Replace extensions
rnr -f '\..*$' '.txt' ./*
Original tree
.
├── file-01.ext1
├── file-02.ext2
└── file-03.ext3
Renamed tree
.
├── file-01.txt
├── file-02.txt
└── file-03.txt
Replace numbers
rnr -f '\d' '1' ./*
Original tree
.
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── file-11.txt
├── file-12.txt
└── file-13.txt
Capture groups
name(1)-number(2).extension(3)
].sh
rnr -f '(\w+)-(\d+).(\w+)' '${2}-${1}.${3}' ./*
Original tree
.
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── 01-file.txt
├── 02-file.txt
└── 03-file.txt
Capture several named groups and swap them
number
.ext
.sh
rnr -f '(?P<number>\d{2})\.(?P<ext>\w{3})' '${ext}.${number}' ./*
Original tree
.
├── file-01.txt
├── file-02.txt
└── file-03.txt
Renamed tree
.
├── file-txt.01
├── file-txt.02
└── file-txt.03