All, I am trying to download all files of a webpage - but compressed, if they come compressed, and regular if not compressed. Get all the files the way a browser would.
so, this works for the html file itself: wget --header="Accept-encoding: gzip" "url" and this for itself works to download all elements: wget -p -H "url" So, now I want these combined: wget -p -H --header="Accept-encoding: gzip" "url" Unfortunately this only pulls the html files (because where I pull them they are compressed), and not all the other scripts and stylesheets and so on, although at least a few of these are compressed, either. Ideas, tips?
