summaryrefslogtreecommitdiff
path: root/no_empty
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-01-29 19:14:08 +0100
committerPatrick Simianer <p@simianer.de>2014-01-29 19:14:08 +0100
commit68acbb9a0c7967cb90a7e3756fc94fdd8a73d154 (patch)
tree3b445131dcb203e94473ae1d8aa82a1798585276 /no_empty
parent49158e721bfaf6423dca9fc633873218f691c83a (diff)
make use of nlp_ruby, LICENSE
Diffstat (limited to 'no_empty')
-rwxr-xr-xno_empty10
1 files changed, 6 insertions, 4 deletions
diff --git a/no_empty b/no_empty
index ecdbcdf..cd825c0 100755
--- a/no_empty
+++ b/no_empty
@@ -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"