2017-09-17 17:45:03 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 19:46:27 +02:00
|
|
|
#include <errno.h>
|
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-03-28 19:46:27 +02:00
|
|
|
fprintf(stderr, "popen '%s': %s\n", cmd, strerror(errno));
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
p = fgets(buf, sizeof(buf) - 1, fp);
|
|
|
|
pclose(fp);
|
|
|
|
if (!p)
|
|
|
|
return NULL;
|
|
|
|
if ((p = strrchr(buf, '\n')) != NULL)
|
|
|
|
p[0] = '\0';
|
|
|
|
|
|
|
|
return buf[0] ? buf : NULL;
|
|
|
|
}
|