├── .github ├── gen_release_note_from_commits.sh └── workflows │ ├── go.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── constant.go ├── cpu.go ├── memory.go ├── parse.go ├── root.go ├── sysinfo │ └── sysinfo.go └── version │ └── version.go ├── go.mod ├── go.sum └── main.go /.github/gen_release_note_from_commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/.github/gen_release_note_from_commits.sh -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/README.md -------------------------------------------------------------------------------- /cmd/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/constant.go -------------------------------------------------------------------------------- /cmd/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/cpu.go -------------------------------------------------------------------------------- /cmd/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/memory.go -------------------------------------------------------------------------------- /cmd/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/parse.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/sysinfo/sysinfo.go -------------------------------------------------------------------------------- /cmd/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/cmd/version/version.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawn-bluce/eat/HEAD/main.go --------------------------------------------------------------------------------