├── .gitignore ├── LICENSE ├── README.md ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsteele/ssh-multi-exec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsteele/ssh-multi-exec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsteele/ssh-multi-exec/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/tomsteele/ssh-multi-exec 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomsteele/ssh-multi-exec/HEAD/main.go --------------------------------------------------------------------------------