Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scorpionknifes/gogrep
Implementing pattern search while learning goroutines, chan, testing
https://github.com/scorpionknifes/gogrep
Last synced: about 24 hours ago
JSON representation
Implementing pattern search while learning goroutines, chan, testing
- Host: GitHub
- URL: https://github.com/scorpionknifes/gogrep
- Owner: scorpionknifes
- License: mit
- Created: 2021-04-23T07:49:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-05T11:37:33.000Z (over 3 years ago)
- Last Synced: 2024-05-01T15:49:43.723Z (7 months ago)
- Language: Go
- Homepage:
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gogrep
[![Go Report Card](https://goreportcard.com/badge/github.com/scorpionknifes/gogrep)](https://goreportcard.com/report/github.com/scorpionknifes/gogrep) ![gopherbadger-tag-do-not-edit](https://img.shields.io/badge/Go%20Coverage-96%25-brightgreen.svg?longCache=true&style=flat)
Command line tool to search patterns inside a directory
## Features
- Multiple goroutine support
- Regex pattern matching with multiline matching
- Respects gitignore## Usage
```bash
# Pattern
gogrep PATTERN [PATH]# Examples
gogrep helloworld
gogrep helloworld .
gogrep "hello world" ./data
```