view bin/shebang_args_or_input @ 8703:e5b2b5eda9fe

<oerjan> ` chmod +x she*; mv she* bin
author HackBot
date Tue, 05 Jul 2016 02:21:21 +0000
parents 63a34b59b342
children
line wrap: on
line source

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