tags:

views:

35

answers:

1

Hello. I want to write a script which downloads all the podcasts from an rss-feed. This is code does not work:

  def wget
    @mp3_links.each do |m|
      system("wget", "#{m}")
    end
  end

I understand that to be linked to the delay, but how?

A: 

Google translate?

Anyway, try

system("wget ", "#{m}")
#           ^ extra space here
Tass