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 |
---|---|---|
- 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
- Manually Download a zip/gz file from release page
Example | Description |
---|---|
grepl Version=[\d\.]+ *.csproj -r |
Search for all csproj file references & their versions |
grepl [OPTION...] PATTERNS [FILE...]
NOTE: a single letter options are not combinable as of today! So, instead of -io
you should specify -i -o
- Dmitry Gusarov - Initial work - Grepl
See also the list of contributors who participated in this project.
This project is licensed under the Apache 2.0 License - see the LICENSE.txt file for details
- Inspired by JGS PowerGrep & unix grep