| 23 | using namespace std; |
| 24 | |
| 25 | static const char* wgetExec(const string& path) |
| 26 | { |
| 27 | return |
| 28 | startsWith(path, "http://") ? "wget -O-" : |
| 29 | startsWith(path, "https://") ? "wget -O-" : |
| 30 | startsWith(path, "ftp://") ? "wget -O-" : |
| 31 | NULL; |
| 32 | } |
| 33 | |
| 34 | static const char* zcatExec(const string& path) |
| 35 | { |
no test coverage detected