// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include <string>
#include <vector>
#include <map>

int execute(const std::string& command,
            const std::vector<std::string>& args = {},
            const std::map<std::string, std::string>& env = {},
            bool verbose = true);