[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Re: How to monitor wget command progress in ruby?

Dan Diebolt

2/9/2009 12:09:00 AM

[Note: parts of this message were removed to make it a legal post.]

exec("command")
system("command")
result = `command`
pipe = IO.popen("command", "r")

See:

http://whynotwiki.com/Ruby_/_Process_...
1 Answer

Joao Silva

2/9/2009 12:21:00 AM

0

Dan Diebolt wrote:
> exec("command")
> system("command")
> result = `command`
> pipe = IO.popen("command", "r")
>
> See:
>
> http://whynotwiki.com/Ruby_/_Process_...

Thanks, but i still don't know how i can read from wget console?
--
Posted via http://www.ruby-....