annotate shebang_args_or_input @ 8702:e91970e62be1

<oerjan> fetch http://oerjan.nvg.org/shebang_args_or_input
author HackBot
date Tue, 05 Jul 2016 02:21:15 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8702
e91970e62be1 <oerjan> fetch http://oerjan.nvg.org/shebang_args_or_input
HackBot
parents:
diff changeset
1 #!/bin/bash
e91970e62be1 <oerjan> fetch http://oerjan.nvg.org/shebang_args_or_input
HackBot
parents:
diff changeset
2 interp="$1"; script="$2"; shift 2; if [ "$#" -eq 1 ]; then printf '%s\n' "$1"; elif [ "$#" -eq 0 ]; then cat; fi | { shift; $interp "$script" "$@"; }