Skip to content

Instantly share code, notes, and snippets.

@zackdouglas
Created July 16, 2012 16:19
Show Gist options
  • Save zackdouglas/3123584 to your computer and use it in GitHub Desktop.
Save zackdouglas/3123584 to your computer and use it in GitHub Desktop.
Detect if *nix shell script reading from pipe, readfile, or stdin
#!/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

Purpose

I wanted to investigate how to detect whether a shell script is being passed its data: via stdin, reading a file (<), or a pipe (|). This short script determines which and then echoes the data straight out to stdout.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment