diff options
Diffstat (limited to 'no_empty')
-rwxr-xr-x | no_empty | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1,12 +1,14 @@ #!/usr/bin/env ruby +require 'nlp_ruby' + + files = [] -(0..1).each { |i| files << File.new(ARGV[i], 'r') } -(2..3).each { |i| files << File.new(ARGV[i], 'w') } -files.each { |f| f.set_encoding('utf-8') } +(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_e = files[1].gets line_f.strip!; line_e.strip! next if line_f=='' || line_e=='' files[2].write line_f+"\n" |