ATLAS Offline Software
|
Functions | |
void | exec (const std::string &cmd) |
effects: execute the given command guarantee: strong failures: out of memory II failures: system failure failures: command failure More... | |
std::string | exec_read (const std::string &cmd) |
effects: execute the given command and return the output returns: the output of the command guarantee: strong failures: out of memory III failures: system failure failures: command failure More... | |
std::string | exec_read (const std::string &cmd, int &rc) |
effects: execute the given command and return the output returns: the output of the command guarantee: strong failures: out of memory III failures: system failure failures: command failure More... | |
std::string | quote (const std::string &name) |
effects: quote the given name to protect it from the shell returns: the quoted name guarantee: strong failures: out of memory II More... | |
void RCU::Shell::exec | ( | const std::string & | cmd | ) |
effects: execute the given command guarantee: strong failures: out of memory II failures: system failure failures: command failure
Definition at line 29 of file ShellExec.cxx.
std::string RCU::Shell::exec_read | ( | const std::string & | cmd | ) |
effects: execute the given command and return the output returns: the output of the command guarantee: strong failures: out of memory III failures: system failure failures: command failure
Definition at line 37 of file ShellExec.cxx.
std::string RCU::Shell::exec_read | ( | const std::string & | cmd, |
int & | rc | ||
) |
effects: execute the given command and return the output returns: the output of the command guarantee: strong failures: out of memory III failures: system failure failures: command failure
Definition at line 48 of file ShellExec.cxx.
std::string RCU::Shell::quote | ( | const std::string & | name | ) |
effects: quote the given name to protect it from the shell returns: the quoted name guarantee: strong failures: out of memory II
Definition at line 75 of file ShellExec.cxx.