#include <iostream>
#include <getopt.h>
#include <stdlib.h>
#define LINE_SIZE 1024
static void
{
std::cerr << "Usage: " << program << " [-h]\n";
std::cerr << "Stand alone houdini application\n";
}
int
{
int opt, i;
while ((opt = getopt(argc, argv, "h")) != -1)
{
switch (opt)
{
case 'h':
}
}
if (argc == optind)
{
}
else
{
for (i = optind; i < argc; i++)
{
ts << "mread -m * " << argv[i] << std::ends;
}
}
do {
break;
} while (std::cin);
return 0;
}