├── .builds ├── alpine.yml ├── debian.yml ├── freebsd.yml ├── netbsd.yml └── openbsd.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── arg.h └── pax.c /.builds/alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/.builds/alpine.yml -------------------------------------------------------------------------------- /.builds/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/.builds/debian.yml -------------------------------------------------------------------------------- /.builds/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/.builds/freebsd.yml -------------------------------------------------------------------------------- /.builds/netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/.builds/netbsd.yml -------------------------------------------------------------------------------- /.builds/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/.builds/openbsd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /config.mk 2 | /pax 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/README.md -------------------------------------------------------------------------------- /arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/arg.h -------------------------------------------------------------------------------- /pax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/pax/HEAD/pax.c --------------------------------------------------------------------------------