Re: Capture wget progress bar

2003-03-17 Thread Ask Bjoern Hansen
[EMAIL PROTECTED] (Robert Rendler) writes: > Currently I'm unable to capture wget's progress bar (the one with the arrow). > It doesn't appear to be using STDOUT or STDERR. So this his not working: Why not just use LWP? Try running the following example I made for you. #!/usr/bin/perl -w us

Re: Capture wget progress bar

2003-03-15 Thread Brett W. McCoy
Robert Rendler wrote: Currently I'm unable to capture wget's progress bar (the one with the arrow). It doesn't appear to be using STDOUT or STDERR. So this his not working: open WGET, "wget foo.moo 2>&1 |" or die "Couldn't run wget: $!\n"; while(){ It's likely that wget is writing directly to the

Re: Capture wget progress bar

2003-03-15 Thread Robert Rendler
On Sat, 15 Mar 2003 20:53:27 +1100 Robert Rendler <[EMAIL PROTECTED]> wrote: > I would very much like to use the actual graph while the files are > downloading. That's the whole point I'm using wget instead of LWP. Well the > graph and ease of resuming. Oops, s/graph/progress bar/ -- To unsubsc

Re: Capture wget progress bar

2003-03-15 Thread Robert Rendler
On Sat, 15 Mar 2003 15:11:07 +0530 Ramprasad <[EMAIL PROTECTED]> wrote: > > Why dont you use wget -b and then read the file wget.log I would very much like to use the actual graph while the files are downloading. That's the whole point I'm using wget instead of LWP. Well the graph and ease of re

Re: Capture wget progress bar

2003-03-15 Thread Ramprasad
Robert Rendler wrote: Currently I'm unable to capture wget's progress bar (the one with the arrow). It doesn't appear to be using STDOUT or STDERR. So this his not working: open WGET, "wget foo.moo 2>&1 |" or die "Couldn't run wget: $!\n"; while(){ Why dont you use wget -b and then read the file wg

Capture wget progress bar

2003-03-15 Thread Robert Rendler
Currently I'm unable to capture wget's progress bar (the one with the arrow). It doesn't appear to be using STDOUT or STDERR. So this his not working: open WGET, "wget foo.moo 2>&1 |" or die "Couldn't run wget: $!\n"; while(){ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands