├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .goreleaser.yml ├── .octocov.yml ├── CHANGELOG.md ├── CREDITS ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd └── root.go ├── doc ├── evry.cast ├── evry.png └── screencast.svg ├── evry_test.go ├── executer └── executer.go ├── go.mod ├── go.sum ├── main.go ├── scripts └── entrypoint.sh ├── splitter └── splitter.go └── version └── version.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | evry 3 | coverage.out 4 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.octocov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/.octocov.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/CREDITS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/cmd/root.go -------------------------------------------------------------------------------- /doc/evry.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/doc/evry.cast -------------------------------------------------------------------------------- /doc/evry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/doc/evry.png -------------------------------------------------------------------------------- /doc/screencast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/doc/screencast.svg -------------------------------------------------------------------------------- /evry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/evry_test.go -------------------------------------------------------------------------------- /executer/executer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/executer/executer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/main.go -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -l 2 | 3 | evry $@ 4 | -------------------------------------------------------------------------------- /splitter/splitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/splitter/splitter.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/evry/HEAD/version/version.go --------------------------------------------------------------------------------