protected void doExecute(VaultFsApp app, CommandLine cl) throws Exception {
File localDir = app.getPlatformFile("", true);
List<String> commands = cl.getValues(argCommand);
for (String cmd: commands) {
if (cmd.equals("binary")) {
Debug dbg = new Debug(localDir);
VltContext vCtx = app.createVaultContext(localDir);
vCtx.setVerbose(cl.hasOption(OPT_VERBOSE));
vCtx.setQuiet(cl.hasOption(OPT_QUIET));
vCtx.execute(dbg);
}