Ticket #1262: many

File many, 108 bytes (added by warner, at 2010-11-28T07:59:28Z)

shell script to replace "-m": run like "many ./bin/tahoe start ../GRID/node*"

Line 
1#!/bin/sh -eu
2
3tahoe="$1"
4command="$2"
5shift 2
6while [ $# -gt 0 ]; do "$tahoe" "$command" "$1"; shift ;done