=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== node-rc-1.2.8/README.md-43- * command line arguments, parsed by minimist _(e.g. `--foo baz`, also nested: `--foo.bar=baz`)_ node-rc-1.2.8/README.md:44: * environment variables prefixed with `${appname}_` node-rc-1.2.8/README.md-45- * or use "\_\_" to indicate nested properties <br/> _(e.g. `appname_foo__bar__baz` => `foo.bar.baz`)_ node-rc-1.2.8/README.md-46- * if you passed an option `--config file` then from that file node-rc-1.2.8/README.md:47: * a local `.${appname}rc` or the first found looking in `./ ../ ../../ ../../../` etc. node-rc-1.2.8/README.md:48: * `$HOME/.${appname}rc` node-rc-1.2.8/README.md:49: * `$HOME/.${appname}/config` node-rc-1.2.8/README.md:50: * `$HOME/.config/${appname}` node-rc-1.2.8/README.md:51: * `$HOME/.config/${appname}/config` node-rc-1.2.8/README.md:52: * `/etc/${appname}rc` node-rc-1.2.8/README.md:53: * `/etc/${appname}/config` node-rc-1.2.8/README.md-54- * the defaults object you passed in.