12 lines
123 B
Bash
12 lines
123 B
Bash
|
#!/bin/zsh
|
||
|
while true
|
||
|
do
|
||
|
./thread2
|
||
|
if [[ $? != 0 ]]
|
||
|
then
|
||
|
break
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
echo "there was a problem"
|