首页 > 编程 > Ruby > 正文

ruby 去掉文件里重复的行

2020-03-29 12:11:19
字体:
来源:转载
供稿:网友
old = File.open(ARGV[0]).collect
new = File.open(ARGV[1],"a+")
for i in 0..old.length-1
new.write(old.uniq[i])
end

##或简单两行也可以如qc.rb

old = File.open(ARGV[0]).collect
puts old.uniq

然后qc.rb dic.dic >new.dic
 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表