├── .gitignore ├── LICENSE ├── README.md ├── gg.1 ├── gg.pdf ├── main.go ├── main_test.go ├── multi_reader.go ├── multi_reader_test.go ├── scan.go ├── scan_test.go ├── test.go ├── testdata ├── source.cpio ├── source.tar └── source.zip └── utils └── compareOutputs.sh /.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/README.md -------------------------------------------------------------------------------- /gg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/gg.1 -------------------------------------------------------------------------------- /gg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/gg.pdf -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/main_test.go -------------------------------------------------------------------------------- /multi_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/multi_reader.go -------------------------------------------------------------------------------- /multi_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/multi_reader_test.go -------------------------------------------------------------------------------- /scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/scan.go -------------------------------------------------------------------------------- /scan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/scan_test.go -------------------------------------------------------------------------------- /test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/test.go -------------------------------------------------------------------------------- /testdata/source.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/testdata/source.cpio -------------------------------------------------------------------------------- /testdata/source.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/testdata/source.tar -------------------------------------------------------------------------------- /testdata/source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/testdata/source.zip -------------------------------------------------------------------------------- /utils/compareOutputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelTJones/gg/HEAD/utils/compareOutputs.sh --------------------------------------------------------------------------------