├── .travis.yml ├── LICENSE ├── README.md ├── makefile └── subs /.travis.yml: -------------------------------------------------------------------------------- 1 | script: 2 | - shellcheck -s sh subs 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchweaver/subs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchweaver/subs/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchweaver/subs/HEAD/makefile -------------------------------------------------------------------------------- /subs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchweaver/subs/HEAD/subs --------------------------------------------------------------------------------