Copyright 2007 "carlanderson" As retrieved from http://www.linuxquestions.org/questions/linux-software-2/bash-scripting-pipe-input-to-script-vs-%241-570945/#post2998640 on July 16, 2012
Created
July 16, 2012 16:19
-
-
Save zackdouglas/3123584 to your computer and use it in GitHub Desktop.
Detect if *nix shell script reading from pipe, readfile, or stdin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Copyright: see Copyright.md | |
if readlink /proc/$$/fd/0 | grep -q "^pipe:"; then | |
echo "Pipe input:" | |
elif file $( readlink /proc/$$/fd/0 ) | grep -q "character special"; then | |
echo "Standard input:" | |
else | |
echo "File input:" | |
fi | |
cat # read from stdin and write to stdout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment