Files
uutils-coreutils/tests/fixtures/nohup/is_a_tty.sh
T
2026-02-04 22:12:53 +01:00

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"
: