├── LICENSE ├── README.md ├── cmd └── procs-tree │ └── main.go ├── go.mod ├── pstree.go └── run.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/pstree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/pstree/HEAD/README.md -------------------------------------------------------------------------------- /cmd/procs-tree/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/pstree/HEAD/cmd/procs-tree/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/sbinet/pstree 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /pstree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/pstree/HEAD/pstree.go -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/pstree/HEAD/run.go --------------------------------------------------------------------------------