1 | #!/usr/bin/env coffee
|
2 |
|
3 | # # Command Line
|
4 |
|
5 | options = require('optimist')
|
6 | .default('message_type', 10)
|
7 | .default('ip', (process.env.IP ? 'localhost'))
|
8 | .default('port', 2013)
|
9 | .argv
|
10 |
|
11 | path = require('path')
|
12 | fs = require('fs')
|
13 | lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib')
|
14 |
|
15 | require("#{lib}/send")(options) |
\ | No newline at end of file |