File inputFile = new File( options.getInput() );
if ( !inputFile.isFile() )
{
throw new FileNotFoundException( "File " + inputFile + " is not a valid file" );
}
input = new FileCommandInput( new File( options.getInput() ) );
}
try
{
CommandCenter commandCenter = new CommandCenter( output, input );
if ( input instanceof JlineCommandInput )