Skip to content

Instantly share code, notes, and snippets.

@fortitudepub
Created January 22, 2014 16:15
Show Gist options
  • Save fortitudepub/8561649 to your computer and use it in GitHub Desktop.
Save fortitudepub/8561649 to your computer and use it in GitHub Desktop.
Check standard input is a terminal.
#!/bin/sh
if [ -t 0 ]
then
echo "Input is a terminal"
else
echo "Input is NOT a terminal"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment