#!/bin/bash if [ -f result ] ; then rm result fi #PARALIST = "cat ../testcase" for para in `cat ../testcases`; do echo $para | ./tiny >> result done exit 0