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