#!/bin/sh # Turns off all solvers and then turns on the specified one. # Usage: turnononly [exp script] ... if [ $# -lt 3 ] ; then echo "Usage: turnononly [exp script] ..." fi OUTNAME=$1 shift EXENAME=$1 shift for f do turnoffall $f turnon $OUTNAME $EXENAME $f done