#!/usr/bin/pwsh <# .SYNTAX download.ps1 [] .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 }