├── .gitignore ├── README.md ├── bin ├── rfc └── usage.txt ├── index.js ├── jsdoc.conf.json ├── package.json ├── rfc.1 ├── rfc.1.md └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/README.md -------------------------------------------------------------------------------- /bin/rfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/bin/rfc -------------------------------------------------------------------------------- /bin/usage.txt: -------------------------------------------------------------------------------- 1 | usage: rfc [-rvVh] [args ...] 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/index.js -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/package.json -------------------------------------------------------------------------------- /rfc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/rfc.1 -------------------------------------------------------------------------------- /rfc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/rfc.1.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwerle/rfc/HEAD/test.js --------------------------------------------------------------------------------