File indexing completed on 2025-07-06 12:16:17

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