UNPKG

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