2007-01-27 22:12:15 +08:00
|
|
|
\section isatty isatty - test if the specified file descriptor is a tty
|
2006-09-20 00:53:17 +08:00
|
|
|
|
|
|
|
\subsection isatty-synopsis Synopsis
|
|
|
|
<tt>isatty [FILE DESCRIPTOR]</tt>
|
|
|
|
|
2013-04-22 09:13:18 +08:00
|
|
|
\subsection isatty-description Description
|
|
|
|
The <tt>isatty</tt> command is used to test if a file descriptor is a tty.
|
2006-09-20 00:53:17 +08:00
|
|
|
|
2013-04-22 09:13:18 +08:00
|
|
|
FILE DESCRIPTOR may be either the number of a file descriptor, or one of the
|
|
|
|
strings stdin, stdout and stderr.
|
|
|
|
|
|
|
|
If the specified file descriptor is a tty, the exit status of the command is
|
|
|
|
zero, otherwise, it is non-zero.
|
2006-09-20 00:53:17 +08:00
|
|
|
|
|
|
|
|