view bin/f @ 9988:5c540b416103

<b_jonas> `` t=bin/calesyta2016list; >$t echo \'echo -n "$(basename "$0")${@:+ }$@: "; tail -n+2 "$0" | xargs; exit\'$\'\\nb_jonas\' && chmod -c a+x "$t"
author HackBot
date Fri, 16 Dec 2016 10:49:15 +0000
parents c989a1669243
children
line wrap: on
line source

#! /bin/bash
cmd="$1"
shift
f="$*"
if [[ -z "$f" && "$cmd" == *\ * ]]; then f="${cmd#* }"; cmd="${cmd%% *}"; fi
if [[ -z "$f" ]]; then echo try: \`f command filename; elif [[ -e "$f" ]]; then "$cmd" "$(< "$f")"; else echo no such file: "$f"; fi