Last active
August 29, 2015 14:07
-
-
Save alambike/ca52b1b50483f2f4e84f to your computer and use it in GitHub Desktop.
Descarga recursiva dun site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# por ftp con wget | |
wget -r --user=<usuario> --password=<password> ftp://<host> | |
# por http con wget | |
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent --domains <dominio> -H <dominio> | |
# por http con httrack | |
httrack "http://<dominio>/" -O <path_almacenamiento> "+*.<dominio>/*" -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment