#pragma once #include #include #include struct sSSHInfo { std::string host; std::string user; std::string port; }; int execute_cmd( const std::string& command, const std::vector& args, const std::string& working_dir, const std::map& env, bool silent, bool interactive, sSSHInfo* sshinfo = nullptr, std::string* output = nullptr );