This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node --harmony | |
// todo: only worry about flags if this is the main module | |
var argv = require('minimist')(process.argv.slice(2)) | |
var createClient = require('net-oce-protocol') | |
var duplex = require('duplexer') | |
var spawn = require('child_process').spawn | |
var path = require('path') | |
var inspect = require('util').inspect | |
var co = require('co') |