Definition at line 1646 of file mainIDo.cpp. References CallSystem(), ILOG_INFO, mDryRun, ResolveExports(), and Impala::StringTail(). Referenced by HandleCmd(). 01647 { 01648 ILOG_INFO("DoSystem " << cmdLine); 01649 String line = StringTail(cmdLine, ' ', false); 01650 line = ResolveExports(line); 01651 if (line.empty()) 01652 return; 01653 if (mDryRun) 01654 std::cout << line << std::endl; 01655 else 01656 CallSystem(line); 01657 }
Here is the call graph for this function: ![]()
|