├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE.blackfriday.txt ├── LICENSE.dwarf.go.txt ├── LICENSE.mdcat.txt ├── LICENSE.txt ├── LICENSE.which.txt ├── README.md ├── _config.yml ├── dwarf.go ├── dwarf_test.go ├── go.mod ├── go.sum ├── goman.1.md ├── goman.gif ├── goman.go ├── goman.png ├── goman_test.go ├── main.go └── testdata ├── goman.exe ├── goman_linux └── goman_macos /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE.blackfriday.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/LICENSE.blackfriday.txt -------------------------------------------------------------------------------- /LICENSE.dwarf.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/LICENSE.dwarf.go.txt -------------------------------------------------------------------------------- /LICENSE.mdcat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/LICENSE.mdcat.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE.which.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/LICENSE.which.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/_config.yml -------------------------------------------------------------------------------- /dwarf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/dwarf.go -------------------------------------------------------------------------------- /dwarf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/dwarf_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/go.sum -------------------------------------------------------------------------------- /goman.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/goman.1.md -------------------------------------------------------------------------------- /goman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/goman.gif -------------------------------------------------------------------------------- /goman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/goman.go -------------------------------------------------------------------------------- /goman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/goman.png -------------------------------------------------------------------------------- /goman_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/goman_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/main.go -------------------------------------------------------------------------------- /testdata/goman.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/testdata/goman.exe -------------------------------------------------------------------------------- /testdata/goman_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/testdata/goman_linux -------------------------------------------------------------------------------- /testdata/goman_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appliedgocode/goman/HEAD/testdata/goman_macos --------------------------------------------------------------------------------