mirror of
https://github.com/uutils/coreutils
synced 2025-01-24 19:05:25 +00:00
22 lines
268 B
Bash
22 lines
268 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
|
||
|
|
||
|
true
|