10 lines
182 B
Bash
10 lines
182 B
Bash
#!/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 |