mirror of
https://github.com/FranP-code/public-apis.git
synced 2025-10-13 00:03:04 +00:00
Initial skeleton of parsing text file
This commit is contained in:
9
build/validate.rb
Executable file
9
build/validate.rb
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/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}"
|
||||||
|
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user