मैं एक URL से एक फ़ाइल डाउनलोड करने की कोशिश कर रहा हूँ जो इस तरह दिखती है:
http://pdf.example.com/filehandle.ashx?p1=ABC&p2=DEF.pdf
ब्राउज़र के भीतर, यह लिंक मुझे एक फाइल डाउनलोड करने के लिए प्रेरित करता है, जिसे xF.pdf कहा जाता है, भले ही DEF क्या हो (लेकिन 'x.pdf' सही सामग्री है)।
हालाँकि, wget का उपयोग करने पर, मुझे निम्नलिखित मिलते हैं:
>wget.exe http://pdf.example.com/filehandle.ashx?p1=ABC&p2=DEF.pdf
SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc
syswgetrc = C:\Program Files\GnuWin32/etc/wgetrc
--2011-01-06 07:52:05-- http://pdf.example.com/filehandle.ashx?p1=ABC
Resolving pdf.example.com... 99.99.99.99
Connecting to pdf.example.com|99.99.99.99|:80... connected.
HTTP request sent, awaiting response... 500 Internal Server Error
2011-01-06 07:52:08 ERROR 500: Internal Server Error.
'p2' is not recognized as an internal or external command,
operable program or batch file.
यह विंडोज विस्टा सिस्टम पर है
Edit1
>wget.exe "http://pdf.example.com/filehandle.ashx?p1=ABC&p2=DEF.pdf"
SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc
syswgetrc = C:\Program Files\GnuWin32/etc/wgetrc
--2011-02-06 10:18:31-- http://pdf.example.com/filehandle.ashx?p1=ABC&p2=DEF.pdf
Resolving pdf.example.com... 99.99.99.99
Connecting to pdf.example.com|99.99.99.99|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4568 (4.5K) [image/JPEG]
Saving to: `filehandle.ashx@p1=ABC&p2=DEF.pdf'
100%[======================================>] 4,568 --.-K/s in 0.1s
2011-02-06 10:18:33 (30.0 KB/s) - `filehandle.ashx@p1=ABC&p2=DEF.pdf'
saved [4568/4568]