woodpecker/vendor/github.com/quasilyte/gogrep
6543 56a854fe14
Update deps (#789)
* update github.com/docker/cli

* update github.com/docker/distribution

* update github.com/docker/docker

* update github.com/gin-gonic/gin

* update github.com/golang-jwt/jwt/v4

* update github.com/golangci/golangci-lint

* update github.com/gorilla/securecookie

* update github.com/mattn/go-sqlite3

* update github.com/moby/moby

* update github.com/prometheus/client_golang

* update github.com/xanzy/go-gitlab
2022-02-24 17:33:24 +01:00
..
internal/stdinfo Update deps (#789) 2022-02-24 17:33:24 +01:00
nodetag Update deps (#789) 2022-02-24 17:33:24 +01:00
.gitignore Update deps (#789) 2022-02-24 17:33:24 +01:00
.golangci.yml Update deps (#789) 2022-02-24 17:33:24 +01:00
compile.go Update deps (#789) 2022-02-24 17:33:24 +01:00
compile_import.go Update deps (#789) 2022-02-24 17:33:24 +01:00
gen_operations.go Update deps (#789) 2022-02-24 17:33:24 +01:00
go.mod Update deps (#789) 2022-02-24 17:33:24 +01:00
go.sum Update deps (#789) 2022-02-24 17:33:24 +01:00
gogrep.go Update deps (#789) 2022-02-24 17:33:24 +01:00
instructions.go Update deps (#789) 2022-02-24 17:33:24 +01:00
LICENSE Update deps (#789) 2022-02-24 17:33:24 +01:00
Makefile Update deps (#789) 2022-02-24 17:33:24 +01:00
match.go Update deps (#789) 2022-02-24 17:33:24 +01:00
operation_string.go Update deps (#789) 2022-02-24 17:33:24 +01:00
operations.gen.go Update deps (#789) 2022-02-24 17:33:24 +01:00
parse.go Update deps (#789) 2022-02-24 17:33:24 +01:00
README.md Update deps (#789) 2022-02-24 17:33:24 +01:00
slices.go Update deps (#789) 2022-02-24 17:33:24 +01:00

logo

Build Status PkgGoDev Go Report Card Code Coverage

gogrep

This is an attempt to move a modified gogrep from the go-ruleguard project, so it can be used independently.

This repository contains two Go modules. One for the gogrep library and the second one for the command-line tool.

gogrep as a library

To get a gogrep library module, install the root Go module.

$ go get github.com/quasilyte/gogrep

gogrep as a command-line utility

To get a gogrep command-line tool, install the cmd/gogrep Go submodule.

$ go install github.com/quasilyte/cmd/gogrep

See docs/gogrep_cli.md to learn how to use it.

Used by

A gogrep library is used by:

Acknowledgements

The original gogrep is written by the Daniel Martí.