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