9 lines
107 B
Bash
9 lines
107 B
Bash
#!/bin/bash
|
|
|
|
./main
|
|
|
|
while [ $? == 100 ] ; do
|
|
echo "Restarting software authentictor."
|
|
./main
|
|
done
|