当前位置 博文首页 > ruby 去掉文件里重复的行

    ruby 去掉文件里重复的行

    作者:admin 时间:2021-02-07 09:18

    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
    js
下一篇:没有了