1.0.0 • Published 2 years ago

replacestr v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

replacestr

replacestr is a simple utility that can be used to replace a string in your files. Replacing a string in a file is a common task for developers. You don't need to know how to write a regex to replace a string in a file. Easy to use and easy to understand.

For example, if you want to replace all occurrences of foo with bar in a file, you can use the following command:

replacestr -f myfile.txt -s foo -r bar

Usage

$ replacestr -f myfile.txt -s foo -r bar
$ replacestr -f myfolder/*.txt -s foo -r bar
$ replacestr -f myfolder/**/*.txt -s foo -r bar
$ replacestr -f *.txt -s foo -r bar -i test.txt # ignore case
$ replacestr -f C:/Users/Adem/Myfolder/*.txt -s old -r new -i test.txt

To display the help for the tool use the -h flag:

$ replacestr -h
Flag (short)Flag (long)Description
-f <files...>--files <files...>File(s) or folder to search in.
-s --search String to search for.
-r --replace String to replace with.
-i <files...>--ignore <files...>File(s) to ignore.
-e --encoding Encoding to use. Default "utf-8"
-q--silentSilent mode: no output
-h--helpShow help
-v--versionShow version
-p--pretendPretend mode: no changes will be made
-a--aboutAbout replacestr
-o --output Output file

Installation

Using npx you can run the script without installing it first:

npx replacestr -f myfile.txt -s foo -r bar

Globally via npm

npm install -g replacestr

This will install replacestr globally so that it may be run from the command line anywhere.

Development

Checkout this repository locally, then:

$ npm i
$ npm run start -- --help

Changelog

1.0.0 Initial release.