Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 375 Bytes

wget.md

File metadata and controls

19 lines (16 loc) · 375 Bytes

Clone a website

 k = convert local links to refer to local copies
 p = downloads all prerequisite files
 nH = disable downloading files into host-prefixed names folders
 N = clone time-stamps from source
wget -k -p -nH -N http://<rhost>

Download file and write it to file

wget <rhost> -O <file>

Print result to stdout

wget -qO- <rhost>