├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── booze.c ├── booze.sh ├── cowsayfs.sh ├── hello.sh ├── ops.def └── passthrough.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/README.md -------------------------------------------------------------------------------- /booze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/booze.c -------------------------------------------------------------------------------- /booze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/booze.sh -------------------------------------------------------------------------------- /cowsayfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/cowsayfs.sh -------------------------------------------------------------------------------- /hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/hello.sh -------------------------------------------------------------------------------- /ops.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/ops.def -------------------------------------------------------------------------------- /passthrough.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevweiss/booze/HEAD/passthrough.sh --------------------------------------------------------------------------------