mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 21:07:40 +02:00
Add download-file.ps1 and download-dir.ps1
This commit is contained in:
24
Scripts/download-dir.ps1
Executable file
24
Scripts/download-dir.ps1
Executable file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/pwsh
|
||||
<#
|
||||
.SYNTAX download-dir.ps1 [<URL>]
|
||||
.DESCRIPTION downloads a directory tree from the given URL
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($URL = "")
|
||||
if ($URL -eq "") { $URL = read-host "Enter directory URL to download" }
|
||||
|
||||
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 - directory downloaded from $URL"
|
||||
exit 0
|
||||
} catch {
|
||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
@ -1,12 +1,13 @@
|
||||
#!/usr/bin/pwsh
|
||||
<#
|
||||
.SYNTAX download.ps1 [<URL>]
|
||||
.DESCRIPTION downloads the file/directory from the given URL
|
||||
.SYNTAX download-file.ps1 [<URL>]
|
||||
.DESCRIPTION downloads a file from the given URL
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($URL = "")
|
||||
if ($URL -eq "") { $URL = read-host "Enter file URL to download" }
|
||||
|
||||
try {
|
||||
& wget --version
|
||||
@ -15,7 +16,7 @@ try {
|
||||
& 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"
|
||||
write-host -foregroundColor green "OK - file downloaded from $URL"
|
||||
exit 0
|
||||
} catch {
|
||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
Reference in New Issue
Block a user