Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wget and special characters

I am using wget locally to take a static snapshot of a small web app. When I do, the resulting html files come back with strange characters in place of quotation marks and apostrophes.

What can I do to avoid this behavior?

Thanks.

like image 309
Brett Avatar asked Jul 05 '12 18:07

Brett


1 Answers

I would suggest trying with:

--restrict-file-names=nocontrol

Source: http://www.win.tue.nl/~aeb/linux/misc/wget.html

like image 153
Don King Avatar answered Oct 19 '22 18:10

Don King