9 lines
121 B
Bash
9 lines
121 B
Bash
|
#!/usr/bin/env bash
|
||
|
while :
|
||
|
do
|
||
|
output=$(./build/Lab4)
|
||
|
if [ "$output" != "1" ]; then
|
||
|
echo "$output"
|
||
|
fi
|
||
|
done
|