1 /* tty - return terminal name */
3 /* See Makefile for compilation details. */
6 Copyright (C) 1999-2009 Free Software Foundation, Inc.
8 This file is part of GNU Bash.
9 Bash is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 Bash is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with Bash. If not, see <http://www.gnu.org/licenses/>.
28 #include "bashgetopt.h"
31 extern char *ttyname ();
39 reset_internal_getopt ();
41 while ((opt
= internal_getopt (list
, "s")) != -1)
57 puts (t
? t
: "not a tty");
58 return (t
? EXECUTION_SUCCESS
: EXECUTION_FAILURE
);
62 "Display terminal name.",
64 "tty writes the name of the terminal that is opened for standard",
65 "input to standard output. If the `-s' option is supplied, nothing",
66 "is written; the exit status determines whether or not the standard",
67 "input is connected to a tty.",
71 /* The standard structure describing a builtin command. bash keeps an array
72 of these structures. */
73 struct builtin tty_struct
= {
74 "tty", /* builtin name */
75 tty_builtin
, /* function implementing the builtin */
76 BUILTIN_ENABLED
, /* initial flags for builtin */
77 tty_doc
, /* array of long documentation strings. */
78 "tty [-s]", /* usage synopsis; becomes short_doc */
79 0 /* reserved for internal use */