find-bad-url-filenames
v1.0.2
Published
A node executable to find any filenames recursively with characters that don't belong in URLs
Maintainers
Readme
find-bad-url-filenames
A node script for recursively finding filenames that include reserved filename characters. The process will exit with error code 1 if a bad filename is found.
Usage
$ npm install -g find-bad-url-filenamesor
$ npx find-bad-url-filenamesThen...
// Search thru specific path
$ find-bad-url-filenames [path]
$ npx find-bad-url-filenames [path]or
// Search thru current folder
$ find-bad-url-filenames
$ npx find-bad-url-filenamesExample
Searching through a folder in the home directory called "project" that has a file by the name of bad*file.#
$ find-bad-url-filenames ~/projectOutputs:
Found bad filenames:
[
'/Users/johndoe/project/bad*file.#'
]