| 1292 | |
| 1293 | #ifndef WIN32 |
| 1294 | std::string ShellEscape(const std::string& arg) |
| 1295 | { |
| 1296 | std::string escaped = arg; |
| 1297 | boost::replace_all(escaped, "'", "'\"'\"'"); |
| 1298 | return "'" + escaped + "'"; |
| 1299 | } |
| 1300 | #endif |
| 1301 | |
| 1302 | #if HAVE_SYSTEM |
no outgoing calls