mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-10 18:58:21 +02:00
17 lines
353 B
PowerShell
Executable File
17 lines
353 B
PowerShell
Executable File
#!/snap/bin/powershell
|
|
#
|
|
# Syntax: ./download_homepage.ps1
|
|
# Description: downloads from the given URL
|
|
# Author: Markus Fleschutz
|
|
# Source: github.com/fleschutz/PowerShell
|
|
# License: CC0
|
|
|
|
backup()
|
|
{
|
|
URL=$1
|
|
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent $URL --directory-prefix . --no-verbose
|
|
}
|
|
|
|
backup $1
|
|
exit 0
|