summaryrefslogtreecommitdiffstats
path: root/testing/resources/stdout_stderr_repo/tty-check-entry
diff options
context:
space:
mode:
Diffstat (limited to 'testing/resources/stdout_stderr_repo/tty-check-entry')
-rwxr-xr-xtesting/resources/stdout_stderr_repo/tty-check-entry11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/resources/stdout_stderr_repo/tty-check-entry b/testing/resources/stdout_stderr_repo/tty-check-entry
new file mode 100755
index 0000000..01a9d38
--- /dev/null
+++ b/testing/resources/stdout_stderr_repo/tty-check-entry
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+t() {
+ if [ -t "$1" ]; then
+ echo "$2: True"
+ else
+ echo "$2: False"
+ fi
+}
+t 0 stdin
+t 1 stdout
+t 2 stderr