Bulk Rename, my first npm package

Mohamed Almadih
12/20/2021
1 min read

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
1bulk-rename <cmd> [args]23Commands:4bulk-rename list List files in current directory5bulk-rename replace Replace substring with another string6bulk-rename delete Delete substring from filename7bulk-rename insert Insert substring into filename89Options: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