2017-09-17 17:45:03 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-09-17 16:18:17 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-09-24 15:33:01 +02:00
|
|
|
#include "../util.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
|
|
|
|
const char *
|
|
|
|
run_command(const char *cmd)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
FILE *fp;
|
|
|
|
|
2018-05-02 08:29:36 +02:00
|
|
|
if (!(fp = popen(cmd, "r"))) {
|
2018-05-18 10:59:05 +02:00
|
|
|
warn("popen '%s':", cmd);
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
p = fgets(buf, sizeof(buf) - 1, fp);
|
2018-05-20 00:57:24 +02:00
|
|
|
if (pclose(fp) < 0) {
|
|
|
|
warn("pclose '%s':", cmd);
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-06 22:28:56 +02:00
|
|
|
if (!p) {
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
2018-05-06 22:28:56 +02:00
|
|
|
}
|
|
|
|
if ((p = strrchr(buf, '\n'))) {
|
2017-09-17 16:18:17 +02:00
|
|
|
p[0] = '\0';
|
2018-05-06 22:28:56 +02:00
|
|
|
}
|
2017-09-17 16:18:17 +02:00
|
|
|
|
|
|
|
return buf[0] ? buf : NULL;
|
|
|
|
}
|