sbase/nohup.c

49 lines
901 B
C
Raw Normal View History

2011-06-18 01:41:28 -04:00
/* See LICENSE file for copyright and license details. */
#include <sys/stat.h>
2011-06-18 01:41:28 -04:00
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <unistd.h>
2011-06-18 01:41:28 -04:00
#include "util.h"
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s cmd [arg ...]\n", argv0);
2013-06-14 14:20:47 -04:00
}
2011-06-18 01:41:28 -04:00
int
main(int argc, char *argv[])
{
int fd, savederrno;
2011-06-18 01:41:28 -04:00
ARGBEGIN {
default:
usage();
} ARGEND
2013-06-14 14:20:47 -04:00
if (!argc)
2013-06-14 14:20:47 -04:00
usage();
2011-06-18 01:41:28 -04:00
if (signal(SIGHUP, SIG_IGN) == SIG_ERR)
enprintf(127, "signal HUP:");
2013-06-14 14:20:47 -04:00
if (isatty(STDOUT_FILENO)) {
if ((fd = open("nohup.out", O_WRONLY | O_APPEND | O_CREAT, S_IRUSR | S_IWUSR)) < 0)
enprintf(127, "open nohup.out:");
2014-11-19 14:59:37 -05:00
if (dup2(fd, STDOUT_FILENO) < 0)
enprintf(127, "dup2:");
2011-06-18 01:41:28 -04:00
close(fd);
}
if (isatty(STDERR_FILENO) && dup2(STDOUT_FILENO, STDERR_FILENO) < 0)
enprintf(127, "dup2:");
execvp(argv[0], argv);
savederrno = errno;
weprintf("execvp %s:", argv[0]);
_exit(126 + (savederrno == ENOENT));
2011-06-18 01:41:28 -04:00
}