├── .travis.yml ├── LICENSE ├── README.md ├── doc.go ├── example_test.go ├── fileinfo.go ├── go.mod ├── hash.go ├── header.go ├── reader.go ├── svr4.go ├── svr4_test.go ├── testdata ├── Makefile ├── checklist.txt ├── etc │ └── hosts ├── gophers.txt ├── readme.txt ├── test_odc.cpio ├── test_svr4.cpio ├── test_svr4_crc.cpio └── todo.txt ├── writer.go └── writer_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/doc.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/example_test.go -------------------------------------------------------------------------------- /fileinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/fileinfo.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cavaliergopher/cpio 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/hash.go -------------------------------------------------------------------------------- /header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/header.go -------------------------------------------------------------------------------- /reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/reader.go -------------------------------------------------------------------------------- /svr4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/svr4.go -------------------------------------------------------------------------------- /svr4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/svr4_test.go -------------------------------------------------------------------------------- /testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/testdata/Makefile -------------------------------------------------------------------------------- /testdata/checklist.txt: -------------------------------------------------------------------------------- 1 | todo.txt -------------------------------------------------------------------------------- /testdata/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/testdata/etc/hosts -------------------------------------------------------------------------------- /testdata/gophers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/testdata/gophers.txt -------------------------------------------------------------------------------- /testdata/readme.txt: -------------------------------------------------------------------------------- 1 | This archive contains some text files. 2 | -------------------------------------------------------------------------------- /testdata/test_odc.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/testdata/test_odc.cpio -------------------------------------------------------------------------------- /testdata/test_svr4.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/testdata/test_svr4.cpio -------------------------------------------------------------------------------- /testdata/test_svr4_crc.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/testdata/test_svr4_crc.cpio -------------------------------------------------------------------------------- /testdata/todo.txt: -------------------------------------------------------------------------------- 1 | Get animal handling license. 2 | -------------------------------------------------------------------------------- /writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/writer.go -------------------------------------------------------------------------------- /writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cavaliergopher/cpio/HEAD/writer_test.go --------------------------------------------------------------------------------