I try to run a batch file with the following code:
wget.exe "http://example.com/file0%24.html"
The problem is, that CMD is interpreting the %2
as a variable (the second command line parameter) and since it isn't defined, it's empty.
Is there a workaround?