#!/bin/bash

. parse-args "$@"

curl -L -C - --retry 5 --retry-delay 5 --retry-connrefused --progress-bar ${FILE:+-o "$FILE"} ${FILE:-"-O"} "$URL"

