replace icon indicating copy to clipboard operation
replace copied to clipboard

Command line search and replace utility

Results 3 replace issues
Sort by recently updated
recently updated
newest added

What I've tried: # 1st try ```shell replace 'exports.default' 'exports' dist/index.cjs -q ``` Result: ``` It did the replacement but not in quite mode, it wrote result to terminal ```...

We can use number of captured group: ``` npx replace '(.+)' "\$1" test.txt ``` But we are not able to use named capture group: ``` npx replace '(?.+)' "\$name" test.txt...

need to update package version of minimatch from 3.0.5 to higher (latest stable), as lower deps. have some vulnerability issue.