#!/bin/sh -eu

tahoe="$1"
command="$2"
shift 2
while [ $# -gt 0 ]; do "$tahoe" "$command" "$1"; shift ;done
