├── .gitignore ├── LICENSE ├── README.md ├── README_ZH.md ├── _config.yml ├── base ├── StrUtil.go ├── System.go ├── constants.go ├── help.go ├── helpZh.go ├── version.go └── xxcmd.go ├── demo.gif ├── docker └── docker.go ├── go.mod ├── go.sum ├── k8s └── k8s.go ├── shell ├── ip.go ├── ps.go └── shell.go ├── xx.go ├── xx.svg └── xx_zh.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/README_ZH.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/_config.yml -------------------------------------------------------------------------------- /base/StrUtil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/base/StrUtil.go -------------------------------------------------------------------------------- /base/System.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/base/System.go -------------------------------------------------------------------------------- /base/constants.go: -------------------------------------------------------------------------------- 1 | package base 2 | 3 | var SEL_LIMIT int = 5 4 | -------------------------------------------------------------------------------- /base/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/base/help.go -------------------------------------------------------------------------------- /base/helpZh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/base/helpZh.go -------------------------------------------------------------------------------- /base/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/base/version.go -------------------------------------------------------------------------------- /base/xxcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/base/xxcmd.go -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/demo.gif -------------------------------------------------------------------------------- /docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/docker/docker.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/go.sum -------------------------------------------------------------------------------- /k8s/k8s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/k8s/k8s.go -------------------------------------------------------------------------------- /shell/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/shell/ip.go -------------------------------------------------------------------------------- /shell/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/shell/ps.go -------------------------------------------------------------------------------- /shell/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/shell/shell.go -------------------------------------------------------------------------------- /xx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/xx.go -------------------------------------------------------------------------------- /xx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/xx.svg -------------------------------------------------------------------------------- /xx_zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iuv/xx/HEAD/xx_zh.svg --------------------------------------------------------------------------------