-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdo-command.cpp
47 lines (38 loc) · 1.15 KB
/
do-command.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <sys/wait.h>
#include <unistd.h>
#include <cerrno>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#define ERROR(fmt, ...) \
do { \
fprintf(stderr, "%s:%d: " fmt "\n", __FILE__, __LINE__, \
##__VA_ARGS__); \
exit(1); \
} while (false)
int do_command(const char* name, char* const args[]) {
int pid = fork();
if (pid < 0) {
ERROR("%s", strerror(errno));
}
if (pid == 0) {
execvp(name, args);
ERROR("%s", strerror(errno));
}
int status;
if (waitpid(pid, &status, 0) < 0) {
ERROR("%s", strerror(errno));
}
return WEXITSTATUS(status);
}
int main(int argc, char** argv) {
if (argc < 2) {
ERROR("Provide program name");
}
long t0 = time(nullptr);
int code = do_command(argv[1], argv + 1);
long duration = time(nullptr) - t0;
printf("\nCommand completed with %d exit code and took %ld seconds\n", code,
duration);
}