[Bug-wget] wget suggestion

2010-07-16 Thread Chaim Millet
Why doesn't wget use the system proxy settings? (ubuntu 10.04) Would it be possible to add that? thanks

[Bug-wget] Wget Suggestion

2012-11-08 Thread horse6
Dear Sir: how use wget.exe to Memory-Resident? my mean is ( add parameter -MR:n ) as: "wget.exe https://any.com/my.htm --no-check-certificate -nc -b -MR:15 -Omy.htm" if not file "my.htm", auto download & after download ,every 15 seconds loop to check isfile("my.htm") or not ** when i ge

Re: [Bug-wget] wget suggestion

2010-07-16 Thread Giuseppe Scrivano
you can be interested in this previous discussion: http://lists.gnu.org/archive/html/bug-wget/2010-07/msg7.html Does it solve the problem for you? Cheers, Giuseppe Chaim Millet writes: > Why doesn't wget use the system proxy settings? > (ubuntu 10.04) > > Would it be possible to add tha

Re: [Bug-wget] wget suggestion

2010-07-18 Thread Hrvoje Niksic
Giuseppe Scrivano writes: > > Why doesn't wget use the system proxy settings? > > (ubuntu 10.04) > > you can be interested in this previous discussion: > > http://lists.gnu.org/archive/html/bug-wget/2010-07/msg7.html > > Does it solve the problem for you? That thread doesn't really address

Re: [Bug-wget] wget suggestion

2010-08-04 Thread Giuseppe Scrivano
Hi Hrvoje, Hrvoje Niksic writes: > That thread doesn't really address the question of Wget "using the > system proxy setting" that the OP is asking for. I've just tried the > following sequence of steps: > > 1. configure a proxy in (ubuntu/gnome) system->preferences->network > proxy > 2. start

Re: [Bug-wget] wget suggestion

2010-08-05 Thread Hrvoje Niksic
Giuseppe Scrivano writes: > I have followed exactly your same steps under Fedora/Gnome and I get > this: > > $ env | grep -i proxy > NO_PROXY=localhost,127.0.0.0/8 > http_proxy=http://localhost:8080/ OK. Did you use the "apply settings system-wide" option? I didn't, in my testing - maybe that

Re: [Bug-wget] wget suggestion

2010-08-06 Thread Giuseppe Scrivano
Hrvoje Niksic writes: > Giuseppe Scrivano writes: > >> I have followed exactly your same steps under Fedora/Gnome and I get >> this: >> >> $ env | grep -i proxy >> NO_PROXY=localhost,127.0.0.0/8 >> http_proxy=http://localhost:8080/ > > OK. Did you use the "apply settings system-wide" option? I

Re: [Bug-wget] wget suggestion

2010-08-08 Thread Hrvoje Niksic
Giuseppe Scrivano writes: > Hrvoje Niksic writes: > >> Giuseppe Scrivano writes: >> >>> I have followed exactly your same steps under Fedora/Gnome and I get >>> this: >>> >>> $ env | grep -i proxy >>> NO_PROXY=localhost,127.0.0.0/8 >>> http_proxy=http://localhost:8080/ >> >> OK. Did you use th

Re: [Bug-wget] Wget Suggestion

2012-11-09 Thread Tim Ruehsen
Hello horse6, why not simply using a shell script ? I don't exactly get what you need, but it should look something like: for ((;;)); do wget -nc -O my.htm www.example.com test -e my.htm && exit 0 # exit successful download sleep 15 # wait 15sm than try again done You could also check wge

Re: [Bug-wget] Wget Suggestion

2012-11-09 Thread Ángel González
On 08/11/12 10:30, horse6 wrote: > Dear Sir: > > how use wget.exe to Memory-Resident? > > my mean is ( add parameter -MR:n ) > > as: "wget.exe https://any.com/my.htm --no-check-certificate -nc -b -MR:15 > -Omy.htm" > if not file "my.htm", auto download & after download ,every 15 seconds loop >