大家如何写这个 ruby 脚本呢? 当然在 linux 上可以调用 shell 里面 uniq file 就可以完成任务了 如果是在 windows 执行 ruby 脚本如何写呢? 下面 google 得到的脚本 会把分行全部搞乱掉,
# print file and remove duplicate, non-consecutive lines from a file (careful of memory!)
$ ruby -e 'puts STDIN.readlines.sort.uniq!.to_s' < file.txt