Skip to content

Instantly share code, notes, and snippets.

@tucq88
Created December 8, 2015 17:42
Show Gist options
  • Select an option

  • Save tucq88/411773724e855527d2af to your computer and use it in GitHub Desktop.

Select an option

Save tucq88/411773724e855527d2af to your computer and use it in GitHub Desktop.
Resume CURL
# Copied from http://ngtuna.blogspot.com/2013/12/download-continuously-with-curl.html
#! /bin/bash
export done=1;
while [ $done -gt 0 ]; do
/usr/bin/curl -O -C - $1;
export done=$?;
done
if [ $done -eq 0 ]; then
echo "Downloaded $1";
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment