CS3413/Assignment5/testing/test2simple.sh

10 lines
182 B
Bash
Raw Normal View History

2023-11-04 23:34:31 -03:00
#!/usr/bin/env bash
counter=0
# Do this forever
while true; do
(../build/Assignment5 < ../documentation/a5_sample_input_2.txt)
counter=$((counter+1))
echo $counter
done