mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
23 lines
554 B
PowerShell
Executable File
23 lines
554 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
|
|
# Syntax: ./download.ps1 [<URL>]
|
|
# Description: downloads the file/directory from the given URL
|
|
# Author: Markus Fleschutz
|
|
# Source: github.com/fleschutz/PowerShell
|
|
# License: CC0
|
|
|
|
param([string]$URL)
|
|
|
|
try {
|
|
if ($URL -eq "" ) {
|
|
$URL = read-host "Enter URL to download"
|
|
}
|
|
|
|
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent $URL --directory-prefix . --no-verbose
|
|
Write-Output "OK."
|
|
exit 0
|
|
} catch {
|
|
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|