MCPcopy
hub / github.com/chjj/ttystudio / help

Function help

lib/options.js:191–205  ·  view source on GitHub ↗

* Help

()

Source from the content-addressed store, hash-verified

189 */
190
191function help() {
192 var cp = require('child_process')
193 , spawn = cp.spawnSync || cp.spawn;
194
195 spawn('man',
196 [__dirname + '/../man/ttystudio.1'],
197 { stdio: 'inherit' });
198
199 if (cp.spawnSync) {
200 process.exit(0);
201 } else {
202 process.once('uncaughtException', function() {});
203 throw 'stop';
204 }
205}
206
207/**
208 * Expose

Callers 1

parseArgFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected