Commandline cl = new Commandline();
cl.setExecutable( "/bin/sh" );
//cl.createArg().setValue( "-e" );
//cl.createArg().setValue( tmpFile.getPath() );
cl.createArg().setFile( tmpFile );
exitValue = CommandLineUtils.executeCommandLine( cl, stdout, stderr );
System.out.println( "exit value " + exitValue );
/*
if ( exitValue == 0 )