How to download file curl from command line? Need help! or What's the best way to download file curl

18 Replies, 976 Views

Pro tip: Use `wget` if curl’s being stubborn. It resumes broken downloads by default:

`wget -c [url]`

But if you’re set on download file curl, `-C -` resumes partial downloads. Example:
`curl -C - -O [url]`

Messages In This Thread



Users browsing this thread: 1 Guest(s)