Zitat von Ben Smith <[email protected]>:
I know this isn't really a wget issue, but I thought someone might be able to help with it. I'm trying to download a URL that includes %2 in it, which is a variable for DOS/Windows.
That is actually so inside Windows batch files, not in interactively typed commands.
I tried enclosing the URL in "s, which didn't help.
No that does not help (in batch files ;-)
Any ideas?
You must double the % (in batch files): %2 --> %%2 Regards, J.Roderburg
