string logFile = generateTemporaryFileName("SGE-submitlog");
// define command to submit batch
- string subCommand = string("bash -l -c \"cd ") + workDir + "; qsub " + fileNameToExecute + "_Batch.sh\"";
+ string subCommand = string("bash -l -c \\\"cd ") + workDir + "; qsub " + fileNameToExecute + "_Batch.sh\\\"";
string command = _protocol.getExecCommand(subCommand, _hostname, _username);
command += " > ";
command += logFile;
iss >> ref;
// define command to delete batch
- string subCommand = string("bash -l -c \"qdel ") + iss.str() + string("\"");
+ string subCommand = string("bash -l -c \\\"qdel ") + iss.str() + string("\\\"");
string command = _protocol.getExecCommand(subCommand, _hostname, _username);
cerr << command.c_str() << endl;
status = system(command.c_str());
string logFile = generateTemporaryFileName(string("SGE-querylog-id") + jobid.getReference());
// define command to query batch
- string subCommand = string("bash -l -c \"qstat | grep ") + iss.str() + string("\"");
+ string subCommand = string("bash -l -c \\\"qstat | grep ") + iss.str() + string("\\\"");
string command = _protocol.getExecCommand(subCommand, _hostname, _username);
command += " > ";
command += logFile;