changeset 389:5e9c1d73c84a

Implement nohup.
author Rob Landley <rob@landley.net>
date Sun, 20 Nov 2011 21:13:47 -0600
parents b55de19d00c3
children 95a4da23c53a
files toys/nohup.c
diffstat 1 files changed, 42 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toys/nohup.c	Sun Nov 20 21:13:47 2011 -0600
@@ -0,0 +1,42 @@
+/* vi: set sw=4 ts=4:
+ *
+ * nohup.c - run commandline with SIGHUP blocked.
+ *
+ * Copyright 2011 Rob Landley <rob@landley.net>
+ *
+ * See http://opengroup.org/onlinepubs/9699919799/utilities/nohup.html
+
+USE_NOHUP(NEWTOY(nohup, "<1", TOYFLAG_USR|TOYFLAG_BIN))
+
+config NOHUP
+	bool "nohup"
+	default y
+	help
+	  usage: nohup COMMAND [ARGS...]
+
+	  Run a command that survives the end of its terminal.
+	  If stdin is a tty, redirect from /dev/null
+	  If stdout is a tty, redirect to file "nohup.out"
+*/
+
+#include "toys.h"
+
+void nohup_main(void)
+{
+	signal(SIGHUP, SIG_IGN);
+	if (ttyname(1)) {
+		close(1);
+		if (-1 == open("nohup.out", O_CREAT|O_APPEND|O_WRONLY,
+				S_IRUSR|S_IWUSR ))
+		{
+			char *temp = getenv("HOME");
+			temp = xmsprintf("%s/%s", temp ? temp : "", "nohup.out");
+			xcreate(temp, O_CREAT|O_APPEND|O_WRONLY, S_IRUSR|S_IWUSR);
+		}
+	}
+	if (ttyname(0)) {
+		close(0);
+		open("/dev/null", O_RDONLY);
+	}
+	xexec(toys.optargs);
+}