mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
10 lines
162 B
PowerShell
Executable File
10 lines
162 B
PowerShell
Executable File
#!/bin/sh
|
|
|
|
backup()
|
|
{
|
|
URL=$1
|
|
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent $URL --directory-prefix . --no-verbose
|
|
}
|
|
|
|
backup $1
|