view shebang_args_or_input @ 8700:eed2a3355ca3

<oerjan> fetch http://oerjan.nvg.org/shebang_args_or_input
author HackBot
date Tue, 05 Jul 2016 02:11:13 +0000
parents
children
line wrap: on
line source

#!/bin/bash
interp="$1"; script="$2"; shift 2; if [ "$#" -eq 1 ]; then printf '%s\n' "$1"; else cat; fi | { shift; $interp "$script" "$@"; }