I'm using wget to create a backup of a site that's running locally on my computer. The command I'm using is:
wget -rkE http://localhost/mpmf/www/dev
So this actually works pretty well, but at the top and bottom of each file there are some random-ish characters. For example, the first line of index.html is 4c11 and the last line is just 0. It looks like a lot of the files end with 0 but I haven't checked each one to see if that's the case.
It seems like there might be some reason that wget is doing this. I thought it might have something to do with the way it goes through the site recursively, but I don't know. So is there a way I can do this without these extra lines in my files?