CS3413/Lab4/run.sh

9 lines
121 B
Bash
Raw Normal View History

2023-10-24 16:53:50 -03:00
#!/usr/bin/env bash
while :
do
output=$(./build/Lab4)
if [ "$output" != "1" ]; then
echo "$output"
fi
done