PowerShell/Scripts/download.ps1
2021-04-07 15:17:49 +02:00

24 lines
743 B
PowerShell
Executable File

#!/usr/bin/pwsh
<#
.SYNTAX download.ps1 [<URL>]
.DESCRIPTION downloads the file/directory from the given URL
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($URL = "")
try {
& wget --version
if ($lastExitCode -ne "0") { throw "Can't execute 'wget' - make sure wget is installed and available" }
& wget --mirror --convert-links --adjust-extension --page-requisites --no-parent $URL --directory-prefix . --no-verbose
if ($lastExitCode -ne "0") { throw "Can't execute 'wget --mirror $URL'" }
write-host -foregroundColor green "OK - downloaded from $URL"
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}