mirror of
https://github.com/uutils/coreutils
synced 2025-01-18 16:14:13 +00:00
24 lines
306 B
Bash
24 lines
306 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -t 0 ] ; then
|
||
|
echo "stdin is atty"
|
||
|
else
|
||
|
echo "stdin is not atty"
|
||
|
fi
|
||
|
|
||
|
if [ -t 1 ] ; then
|
||
|
echo "stdout is atty"
|
||
|
else
|
||
|
echo "stdout is not atty"
|
||
|
fi
|
||
|
|
||
|
if [ -t 2 ] ; then
|
||
|
echo "stderr is atty"
|
||
|
else
|
||
|
echo "stderr is not atty"
|
||
|
fi
|
||
|
|
||
|
>&2 echo "This is an error message."
|
||
|
|
||
|
true
|