summaryrefslogtreecommitdiff
path: root/src/tty.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-12 01:52:24 +0000
committerJim Meyering <jim@meyering.net>1993-10-12 01:52:24 +0000
commit87fa23e6417d7d1938b72e872d779ae7225a5aa4 (patch)
tree0fcc68f9cdf7315d09d5836df0f261e3d6b8c13a /src/tty.c
parentf12b53b2ce8f0bb0dd28a290f9b27490ef4599a9 (diff)
downloadcoreutils-87fa23e6417d7d1938b72e872d779ae7225a5aa4.tar.xz
merge with 1.8.1b
Diffstat (limited to 'src/tty.c')
-rw-r--r--src/tty.c35
1 files changed, 32 insertions, 3 deletions
diff --git a/src/tty.c b/src/tty.c
index 79e1759e2..1839ae1b0 100644
--- a/src/tty.c
+++ b/src/tty.c
@@ -17,14 +17,19 @@
/* Displays "not a tty" if stdin is not a terminal.
Displays nothing if -s option is given.
- Exit status 0 if stdin is a tty, 1 if not, 2 if usage error.
+ Exit status 0 if stdin is a tty, 1 if not, 2 if usage error,
+ 3 if write error.
- Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
+ Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
#include <stdio.h>
#include <getopt.h>
#include <sys/types.h>
+
#include "system.h"
+#include "version.h"
+
+void error ();
static void usage ();
@@ -34,10 +39,18 @@ char *program_name;
/* If nonzero, return an exit status but produce no output. */
static int silent;
+/* If non-zero, display usage information and exit. */
+static int show_help;
+
+/* If non-zero, print the version on standard output and exit. */
+static int show_version;
+
static struct option const longopts[] =
{
+ {"help", no_argument, &show_help, 1},
{"silent", no_argument, NULL, 's'},
{"quiet", no_argument, NULL, 's'},
+ {"version", no_argument, &show_version, 1},
{NULL, 0, NULL, 0}
};
@@ -56,14 +69,27 @@ main (argc, argv)
{
switch (optc)
{
+ case 0:
+ break;
+
case 's':
silent = 1;
break;
+
default:
usage ();
}
}
+ if (show_version)
+ {
+ printf ("%s\n", version_string);
+ exit (0);
+ }
+
+ if (show_help)
+ usage ();
+
if (optind != argc)
usage ();
@@ -74,9 +100,12 @@ main (argc, argv)
puts (tty);
else
puts ("not a tty");
+
+ if (ferror (stdout) || fclose (stdout) == EOF)
+ error (3, errno, "standard output");
}
- exit (tty == NULL);
+ exit (isatty (0) ? 0 : 1);
}
static void