crunchy/bin/crunchy.sh
2018-05-09 22:31:50 +01:00

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