├── .gitignore ├── COPYING ├── ChangeLog ├── HACKING ├── Makefile.am ├── NOTES ├── README ├── RELEASE-NOTES ├── autogen.sh ├── bti-bashcompletion ├── bti-shrink-urls ├── bti-shrink-urls.1 ├── bti-shrink-urls.xml ├── bti.1 ├── bti.c ├── bti.example ├── bti.h ├── bti.xml ├── config.c ├── configure.ac ├── oath.keys └── scripts └── checkpatch.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/HACKING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/Makefile.am -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/NOTES -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/README -------------------------------------------------------------------------------- /RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/RELEASE-NOTES -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/autogen.sh -------------------------------------------------------------------------------- /bti-bashcompletion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti-bashcompletion -------------------------------------------------------------------------------- /bti-shrink-urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti-shrink-urls -------------------------------------------------------------------------------- /bti-shrink-urls.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti-shrink-urls.1 -------------------------------------------------------------------------------- /bti-shrink-urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti-shrink-urls.xml -------------------------------------------------------------------------------- /bti.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti.1 -------------------------------------------------------------------------------- /bti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti.c -------------------------------------------------------------------------------- /bti.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti.example -------------------------------------------------------------------------------- /bti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti.h -------------------------------------------------------------------------------- /bti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/bti.xml -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/config.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/configure.ac -------------------------------------------------------------------------------- /oath.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/oath.keys -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/bti/HEAD/scripts/checkpatch.pl --------------------------------------------------------------------------------