#!/bin/sh CPC=./cpc for i in samples/*.cpc bench/*.cpc; do if [ "$i" != "bench/b6.cpc" ] ; then "${CPC}" -O $i ./a.out fi done