summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-02-24 21:37:24 -0500
committerJune McEnroe <june@causal.agency>2021-02-24 21:37:24 -0500
commit5d083bea76c36eed0545b634d6ba9be333da2bda (patch)
treeb0f25f343ae1898c3320917b729021214481ceac
parentRemove sbubby, etc. from plan (diff)
downloadsrc-5d083bea76c36eed0545b634d6ba9be333da2bda.tar.gz
src-5d083bea76c36eed0545b634d6ba9be333da2bda.zip
Add -q flag to ever
Diffstat (limited to '')
-rw-r--r--bin/ever.c5
-rw-r--r--bin/man1/ever.16
2 files changed, 8 insertions, 3 deletions
diff --git a/bin/ever.c b/bin/ever.c
index 258b058b..f983912b 100644
--- a/bin/ever.c
+++ b/bin/ever.c
@@ -45,6 +45,7 @@ static int watch(int kq, char *path) {
 	return fd;
 }
 
+static bool quiet;
 static void exec(int fd, char *const argv[]) {
 	pid_t pid = fork();
 	if (pid < 0) err(EX_OSERR, "fork");
@@ -59,6 +60,7 @@ static void exec(int fd, char *const argv[]) {
 	pid = wait(&status);
 	if (pid < 0) err(EX_OSERR, "wait");
 
+	if (quiet) return;
 	if (WIFEXITED(status)) {
 		warnx("exit %d\n", WEXITSTATUS(status));
 	} else if (WIFSIGNALED(status)) {
@@ -71,9 +73,10 @@ static void exec(int fd, char *const argv[]) {
 int main(int argc, char *argv[]) {
 	bool input = false;
 
-	for (int opt; 0 < (opt = getopt(argc, argv, "i"));) {
+	for (int opt; 0 < (opt = getopt(argc, argv, "iq"));) {
 		switch (opt) {
 			break; case 'i': input = true;
+			break; case 'q': quiet = true;
 			break; default:  return EX_USAGE;
 		}
 	}
diff --git a/bin/man1/ever.1 b/bin/man1/ever.1
index 7689c5fb..8cdab99b 100644
--- a/bin/man1/ever.1
+++ b/bin/man1/ever.1
@@ -1,4 +1,4 @@
-.Dd June  1, 2020
+.Dd February 24, 2021
 .Dt EVER 1
 .Os
 .
@@ -8,7 +8,7 @@
 .
 .Sh SYNOPSIS
 .Nm
-.Op Fl i
+.Op Fl iq
 .Ar
 .Ar command
 .Nm
@@ -35,6 +35,8 @@ Attach the
 which was modified
 to the standard input of
 .Ar command .
+.It Fl q
+Suppress exit status output.
 .El
 .
 .Sh EXAMPLES
dd juneJune McEnroe 2017-07-30Play nethack as ValkyrieJune McEnroe 2017-07-28Add toggle to hnelJune McEnroe 2017-07-28Install slJune McEnroe 2017-07-25Add up, supJune McEnroe 2017-07-24Autopickup ringsJune McEnroe 2017-07-24Name dogJune McEnroe 2017-07-23Add nethackrcJune McEnroe 2017-07-23Remove useless setuid in briJune McEnroe Don't you think it would be better if the setuid bit only gave you permission to do it and didn't do it for you? 2017-07-23Clean up hnel a tiny bitJune McEnroe 2017-07-21Set window size in hnelJune McEnroe 2017-07-21Add hnelJune McEnroe 2017-07-19chmod 600 in dtchJune McEnroe