6 lines
94 B
Bash
6 lines
94 B
Bash
#!/bin/sh
|
|
|
|
if [ -t 0 ]
|
|
then echo "Input is a terminal"
|
|
else echo "Input is NOT a terminal"
|
|
fi
|