Use wget for "Save as full web page"

Is there a way to look into a web page and get the exact same result (this is a .htm file) as in the Save As Full Web Page browser command (Chrome or Firefox)?

I could not find the wget configuration that does this correctly. I am interested in automatically saving dynamic data. The web page is as follows:

http://football.bettor.com/barclays-premier-league-winner-2011-12-betting-odds/2011-11-19/market/652852

Now I have automated the Save As Browser command with java mouse / keyboard control, but it is very inefficient and it crashes after 30/40 minutes.

+4
source share
1 answer

Try the following:

$ wget --verbose --page-requisites --convert-links --adjust-extension --force-directories \ http://football.bettor.com/barclays-premier-league-winner-2011-12-betting-odds/2011-11-19/market/652852 
0
source

Source: https://habr.com/ru/post/1383177/


All Articles