blob: cd825c0d4abb3004309c8cdbeae2904d13c5016c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env ruby
require 'nlp_ruby'
files = []
(0..1).each { |i| files << ReadFile.new(ARGV[i]) }
(2..3).each { |i| files << WriteFile.new(ARGV[i]) }
while line_f = files[0].gets
line_e = files[1].gets
line_f.strip!; line_e.strip!
next if line_f=='' || line_e==''
files[2].write line_f+"\n"
files[3].write line_e+"\n"
end
files.each { |f| f.close }
|