Files
command_upload/testpipe.sh
2025-12-06 01:45:18 +05:30

10 lines
126 B
Bash
Executable File

#!/bin/bash
echo "START"
if ! -t 0; then
echo "STDIN is NOT a tty"
cat
else
echo "STDIN *IS* a tty"
fi
echo "END"