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