| 2164 | |
| 2165 | template<typename F, typename... Args> |
| 2166 | int call_impl(F& farg, Args&&... args) |
| 2167 | { |
| 2168 | return Popen(std::forward<F>(farg), std::forward<Args>(args)...).wait(); |
| 2169 | } |
| 2170 | |
| 2171 | static inline void pipeline_impl(std::vector<Popen>& cmds) |
| 2172 | { |