mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 09:47:21 +01:00
11 lines
185 B
Bash
11 lines
185 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
wget \
|
||
|
--recursive \
|
||
|
--no-clobber \
|
||
|
--page-requisites \
|
||
|
--html-extension \
|
||
|
--convert-links \
|
||
|
--restrict-file-names=windows \
|
||
|
--domains "$1" \
|
||
|
"$1"
|