Skip to content

Instantly share code, notes, and snippets.

@tex2e
Last active August 21, 2017 09:20
Show Gist options
  • Save tex2e/f7a4e14ba0d9bf428c5ab4e6ed29e014 to your computer and use it in GitHub Desktop.
Save tex2e/f7a4e14ba0d9bf428c5ab4e6ed29e014 to your computer and use it in GitHub Desktop.
コマンド実行時に標準入力が与えられているか調べる
#!/bin/bash
if [ ! -p /dev/stdin ]; then
echo "no stdin data" 1>&2
exit 1
fi
# ...
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment