00001 #ifndef ROOT_CORE_UTILS__SHELL_EXEC_H
00002 #define ROOT_CORE_UTILS__SHELL_EXEC_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <RootCoreUtils/Global.h>
00020
00021 #include <string>
00022
00023 namespace RCU
00024 {
00025 namespace Shell
00026 {
00032 void exec (const std::string& cmd);
00033
00034
00041 std::string exec_read (const std::string& cmd);
00042
00043
00050 std::string exec_read (const std::string& cmd, int& rc);
00051
00052
00057 std::string quote (const std::string& name);
00058 }
00059 }
00060
00061 #endif