summaryrefslogtreecommitdiff
path: root/src/execute.h
blob: f284230ef2519efa21727d8b85b53064bcfe882e (plain)
1
2
3
4
5
6
7
8
9
// -*- c++ -*-
#pragma once

#include <string>
#include <vector>

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