mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-08 16:45:30 +00:00
56a854fe14
* 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 |
||
---|---|---|
.. | ||
internal/stdinfo | ||
nodetag | ||
.gitignore | ||
.golangci.yml | ||
compile.go | ||
compile_import.go | ||
gen_operations.go | ||
go.mod | ||
go.sum | ||
gogrep.go | ||
instructions.go | ||
LICENSE | ||
Makefile | ||
match.go | ||
operation_string.go | ||
operations.gen.go | ||
parse.go | ||
README.md | ||
slices.go |
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í.