2014-01-08 03:57:49 +00:00
|
|
|
\section isatty isatty - test if a file or file descriptor is a tty.
|
2006-09-19 16:53:17 +00:00
|
|
|
|
|
|
|
\subsection isatty-synopsis Synopsis
|
2014-01-08 03:57:49 +00:00
|
|
|
<tt>isatty [FILE | DEVICE | FILE DESCRIPTOR NUMBER]</tt>
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2013-04-22 01:13:18 +00:00
|
|
|
\subsection isatty-description Description
|
2014-01-08 03:57:49 +00:00
|
|
|
<tt>isatty</tt> tests if a file or file descriptor is a tty.
|
|
|
|
The argument may be in the form of a file path, device, or file descriptor
|
|
|
|
number. Without an argument, <tt>standard input</tt> is implied.
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2014-01-08 03:57:49 +00:00
|
|
|
If the resolved file descriptor is a tty, the command returns zero. Otherwise, the command exits one. No messages are printed to standard error.
|
2013-04-22 01:13:18 +00:00
|
|
|
|
2014-01-08 03:57:49 +00:00
|
|
|
\subsection isatty-examples Examples
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2014-01-08 03:57:49 +00:00
|
|
|
From an interactive shell, the commands below exit with a return value of zero:
|
|
|
|
<pre>
|
|
|
|
isatty
|
|
|
|
isatty stdout
|
|
|
|
isatty 2
|
|
|
|
echo | isatty /dev/fd/1
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
And these will exit non-zero:
|
|
|
|
<pre>
|
|
|
|
echo | isatty
|
|
|
|
isatty /dev/fd/9
|
|
|
|
isatty stdout > file
|
|
|
|
isatty 2 2> file
|
|
|
|
</pre>
|