|
|
b824c9 |
#include "ntux_driver_impl.h"
|
|
|
b824c9 |
#include "argv/argv.h"
|
|
|
b824c9 |
|
|
|
b824c9 |
const struct argv_option ntux_bridge_options[] = {
|
|
|
b824c9 |
{"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,0,
|
|
|
b824c9 |
"show version information"},
|
|
|
b824c9 |
|
|
|
b824c9 |
{"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,0,"short|long",0,
|
|
|
b824c9 |
"show usage information [listing %s options only]"},
|
|
|
b824c9 |
|
|
|
b824c9 |
{"interp", 'i',TAG_INTERP,ARGV_OPTARG_REQUIRED,0,0,0,
|
|
|
b824c9 |
"script interpreter to execute"},
|
|
|
b824c9 |
|
|
|
b824c9 |
{"script", 's',TAG_SCRIPT,ARGV_OPTARG_REQUIRED,0,0,0,
|
|
|
b824c9 |
"script argument to be passed to interpreter"},
|
|
|
b824c9 |
|
|
|
b824c9 |
{"optarg", 's',TAG_OPTARG,ARGV_OPTARG_REQUIRED,0,0,0,
|
|
|
b824c9 |
"optional argument to be passed to interpreter"},
|
|
|
b824c9 |
|
|
|
b824c9 |
{"logfile", 'o',TAG_LOGFILE,ARGV_OPTARG_REQUIRED,0,0,"<FILE>",
|
|
|
b824c9 |
"write output to %s"},
|
|
|
b824c9 |
|
|
|
b824c9 |
{0,0,0,0,0,0,0,0}
|
|
|
b824c9 |
};
|