PowerShell/Scripts/download_homepage.ps1
2020-09-29 18:05:52 +00:00

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