1. renamer-case
Renamer plugin to set the case of a filename
renamer-case
Package: renamer-case
Created by: 75lb
Last modified: Sun, 15 May 2022 18:51:10 GMT
Version: 2.0.2
Downloads: 446
Repository: https://github.com/75lb/renamer-case

Install

npm install renamer-case
yarn add renamer-case

view on npm
npm module downloads
Gihub repo dependents
Gihub package dependents
Build Status
Coverage Status
js-standard-style

renamer-case

Renamer replace chain plugin to set the case of one or more files and/or directories. See this tutorial to learn how to use renamer plugins.

Possible values: camel, kebab, lower, upper, snake and start. It uses the lodash methods by the same name.

Install

$ npm install -g renamer renamer-case

Use

Example usage. Remove the --dry-run option to rename the files on disk.

$ tree -N
.
├── One one
└── One two

0 directories, 2 files

$ renamer --chain renamer-case --case camel --dry-run * 

✔︎ one one → oneOne
✔︎ one two → oneTwo

Rename complete: 1 of 1 files renamed.

$ tree -N
.
├── oneOne
└── oneTwo

0 directories, 2 files

© 2018-21 Lloyd Brookes [email protected].

Dependencies

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code