diff options
| author | Patrick Simianer <p@simianer.de> | 2014-01-29 19:14:08 +0100 | 
|---|---|---|
| committer | Patrick Simianer <p@simianer.de> | 2014-01-29 19:14:08 +0100 | 
| commit | 68acbb9a0c7967cb90a7e3756fc94fdd8a73d154 (patch) | |
| tree | 3b445131dcb203e94473ae1d8aa82a1798585276 /no_empty | |
| parent | 49158e721bfaf6423dca9fc633873218f691c83a (diff) | |
make use of nlp_ruby, LICENSE
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"  | 
