| 342 | std::cout << "batch_items=" << context.values[id + ".count"] << "\n"; |
| 343 | } |
| 344 | |
| 345 | std::string path_arg(const std::filesystem::path & path) { |
| 346 | return path.string(); |
| 347 | } |
| 348 | |
| 349 | std::string format_process_args(const std::string & program, const std::vector<std::string> & args) { |
| 350 | std::ostringstream out; |
| 351 | out << program; |
| 352 | for (const std::string & arg : args) { |
| 353 | out << ' ' << arg; |
| 354 | } |