mirror of
https://github.com/uutils/coreutils
synced 2024-12-15 07:42:48 +00:00
21 lines
268 B
Bash
21 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
|