Skip to content

Instantly share code, notes, and snippets.

@AfroThundr3007730
Created June 10, 2024 15:11
Show Gist options
  • Save AfroThundr3007730/d9ae9c467c730669413f37184cf69906 to your computer and use it in GitHub Desktop.
Save AfroThundr3007730/d9ae9c467c730669413f37184cf69906 to your computer and use it in GitHub Desktop.
cURL wrapper to auto resume downloads
function Invoke-AutoCurl {
<# .SYNOPSIS
cURL wrapper to auto resume downloads #>
[Alias('autocurl')]
Param(
[Parameter(Mandatory)]
[Uri]$URL
)
do {
curl -LOC - $URL
} while ($LASTEXITCODE -eq 18)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment