mirror of
https://github.com/uutils/coreutils.git
synced 2026-05-06 07:26:38 -04:00
7 lines
208 B
Bash
Executable File
7 lines
208 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ -t 0 ] && echo "stdin is a tty" || echo "stdin is not a tty"
|
|
[ -t 1 ] && echo "stdout is a tty" || echo "stdout is not a tty"
|
|
[ -t 2 ] && echo "stderr is a tty" || echo "stderr is not a tty"
|
|
:
|