File indexing completed on 2024-04-14 14:31:24

0001 opml = STDIN.readlines.join
0002 
0003 opml.scan(/xmlUrl="([^"]*)"/) do |match|
0004     m2 = match[0].gsub('&', '&')
0005     puts m2
0006 end
0007