webgalen/test.rb

18 lines
484 B
Ruby
Raw Normal View History

2018-09-20 23:25:39 +00:00
#!/usr/bin/env ruby
urls = %w[
https://boutique.pressecotedivoire.fr/reading?id=SOIRINFO7163pZyPXQ#page=1
https://boutique.pressecotedivoire.fr/reading?id=NOTREVOIE5947jneW2f#page=1
https://boutique.pressecotedivoire.fr/reading?id=LGINFOS1979CHPFdD#page=1
https://boutique.pressecotedivoire.fr/reading?id=LETEMPS4463XBeNW4#page=1
]
urls.each do |url|
cmd = "bundle exec ./download.rb \"#{url}\""
system cmd
unless $?.success?
# try again
system cmd
end
end