11 lines
138 B
Bash
Executable File
11 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
PARAMS=$*
|
|
for i in {1..20}; do
|
|
crunchy ${PARAMS}
|
|
if [ $? == 0 ]; then
|
|
break
|
|
fi
|
|
echo "Going to retry..."
|
|
sleep 3
|
|
done
|