We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Renamer comes with globbing support built in supporting the special characters described here.
For example, this command operates on all js files in the current directory:
js
$ renamer --find this --replace that "*.js"
This command operates on all js files, recursively:
$ renamer --find this --replace that "**/*.js"
this command operates on all js files from the lib directory downward:
lib
$ renamer --find this --replace that "lib/**/*.js"
Bash users without globstar enabled will need to enclose the glob expression in quotes to prevent native file expansion, i.e. "**/*.js"
"**/*.js"