├── .gitignore ├── LICENSE ├── README.md ├── common.go ├── go.mod ├── goInfo.go ├── goInfo_darwin.go ├── goInfo_freebsd.go ├── goInfo_linux.go ├── goInfo_netbsd.go ├── goInfo_openbsd.go └── goInfo_windows.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/README.md -------------------------------------------------------------------------------- /common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/common.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/matishsiao/goInfo 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /goInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo.go -------------------------------------------------------------------------------- /goInfo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo_darwin.go -------------------------------------------------------------------------------- /goInfo_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo_freebsd.go -------------------------------------------------------------------------------- /goInfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo_linux.go -------------------------------------------------------------------------------- /goInfo_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo_netbsd.go -------------------------------------------------------------------------------- /goInfo_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo_openbsd.go -------------------------------------------------------------------------------- /goInfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matishsiao/goInfo/HEAD/goInfo_windows.go --------------------------------------------------------------------------------