Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.85 KB

readme.md

File metadata and controls

57 lines (36 loc) · 1.85 KB

grepl

grepl is a command line tool for searching & replacing file content with RegEx expressions This tool is inspired by JGS PowerGrep but due to cli nature it is also an attempt to respect unix grep

Windows Linux macOS
Build status Build status Build status

Downloading and Installing

  • dotnet:
dotnet tool install -g grepl
  • Chocolatey (Windows only):
    approval/review still pending since 2020-06-25, so only first version is available
choco install grepl --version=0.1.2

Examples

Example Description
grepl Version=[\d\.]+ *.csproj -r Search for all csproj file references & their versions

Documentation

grepl [OPTION...] PATTERNS [FILE...]

NOTE: a single letter options are not combinable as of today! So, instead of -io you should specify -i -o

Built With

Authors

  • Dmitry Gusarov - Initial work - Grepl

See also the list of contributors who participated in this project.

License

This project is licensed under the Apache 2.0 License - see the LICENSE.txt file for details

Acknowledgments

  • Inspired by JGS PowerGrep & unix grep