mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-20 04:26:20 +02:00
20 lines
426 B
Ruby
Executable file
20 lines
426 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
args = ARGV
|
|
filename = args[0]
|
|
|
|
File.foreach(filename).with_index do |line, line_num|
|
|
line_num += 1
|
|
# puts "#{line_num}: #{line}"
|
|
if line.start_with?('|')
|
|
# Skip table schema lines
|
|
if line.eql? "|---|---|---|---|---|\n"
|
|
next
|
|
end
|
|
|
|
values = line.split("|")
|
|
values.each.with_index do |v, vn|
|
|
puts "#{vn}: #{v}"
|
|
end
|
|
end
|
|
end
|