1 |
bash -c "wget --mirror --convert-links --html-extension --wait=2 -o log https://www.jesusninoc.com" |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
--mirror Turn on options suitable for mirroring. This option turns on recursion and time-stamping, sets infinite recursion depth, and keeps FTP directory listings. It is currently equivalent to '-r -N -l inf --no-remove-listing'. --convert-links After the download is complete, convert the links in the document to make them suitable for local viewing. --html-extension -o foo write "log" output to a file named "foo" --wait=seconds Wait the specified number of seconds between the retrievals. Use of this option is recommended, as it lightens the server load by making the requests less frequent. |