validate_filename

0.2.1 • Public • Published

validate_filename

Validate the file and folder names

Install

npm install

Usage

Usage: node node_modules/validate_filename/index.js <options> [file ...]
 
validate the file and folder names
 
Options:
 
-h, --help               output usage information
-V, --version            output the version number
-e, --pattern <pattern>  a string that specifies the pattern of the regular expression
-m, --message <message>  output errors when invalid
 

Demo

  • check one or more paths

    node node_modules/validate_filename/index.js -e '^[a-z0-9_./]+$' -m 'Use snake_case for file and folder names' test.html UPPERCASE.html path/to/test-file.css images/logo.png
    
  • use ls command

    node node_modules/validate_filename/index.js -e '^[a-z0-9_./]+$' -m 'Use snake_case for file and folder names' $(ls)
    

Package Sidebar

Install

npm i validate_filename

Weekly Downloads

7

Version

0.2.1

License

ISC

Last publish

Collaborators

  • holyzfy