Ferdlance's picture
Initial commit for the DevSecOps bot
62a0596
raw
history blame contribute delete
231 Bytes
#!/bin/bash
URL=$1
OUTPUT=$2
MAX_RETRIES=5
for i in $(seq 1 $MAX_RETRIES); do
echo "Tentative $i/$MAX_RETRIES: $URL"
aria2c -x 16 -s 16 -d "$(dirname "$OUTPUT")" -o "$(basename "$OUTPUT")" "$URL" && break
sleep 10
done