15 lines
271 B
JavaScript
Executable File
15 lines
271 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/*
|
|
* Copyright (c) 2014 Joyent Inc. All rights reserved.
|
|
*
|
|
* joyentcloud
|
|
*/
|
|
|
|
var p = console.log;
|
|
var cmdln = require('cmdln');
|
|
var CLI = require('../lib/cli');
|
|
|
|
if (require.main === module) {
|
|
cmdln.main(CLI, process.arg, {showCode: true});
|
|
}
|