Skip to content

Instantly share code, notes, and snippets.

@aloon
Created August 30, 2014 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aloon/c84b90ca06ee4c2e2771 to your computer and use it in GitHub Desktop.
Save aloon/c84b90ca06ee4c2e2771 to your computer and use it in GitHub Desktop.
Simple shell script to test STDIN and STDOUT
#!/bin/sh
if [ -t 0 ]; then
echo nothing in STDIN
else
while read LINE; do
echo ${LINE}
done
exit 0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment