Bulk Rename, my first npm package

Mohamed Almadih

Mohamed Almadih

12/20/2021
1 min read
Bulk Rename, my first npm package

I was a windows guy for a long time, when i moved to linux i am not gonna lie i missed some applications from windows, one of them is a bulk rename application i used to download a lot of anime and series to match them with subtitles i need to rename all of them it hard to do manually but the app was a live saver. when i moved to linux i couldn't fine an good alternative, so i've decided to make my own. it's a basic cli made with nodejs.

Installation

npm i -g bulk-rename-node

Usage

bulk-rename --help

output

1
bulk-rename <cmd> [args]
2
3
Commands:
4
bulk-rename list List files in current directory
5
bulk-rename replace Replace substring with another string
6
bulk-rename delete Delete substring from filename
7
bulk-rename insert Insert substring into filename
8
9
Options:
10
--version Show version number [boolean]
11
--ext Extension of files to work on [string] [default: "all"]
12
--help Show help

comments and pull request are welcomed

Github Repository