如何使用Windows上的unix命令从纯文本文件中删除重复的单词

时间:2013-09-08 06:44:28

标签: file duplicates plaintext

我有一个带有单词的纯文本文件,用逗号分隔,例如:

word1, word2, word3, word2, word4, word5, word 3, word6, word7, word3

我想删除重复项并成为:

word1, word2, word3, word4, word5, word6, word7

There is a realy good article for Linux already所以我安装了gnuwin .... 1小时后就放弃了......

1 个答案:

答案 0 :(得分:0)

  1. 将文字放在文件的不同行中,例如f1.txt。您可以参考How to replace a character by a newline in Vim?
  2. 然后执行命令“sort -u f1.text> f2.txt”
  3. 如果需要,将f2.txt的单词组合成一行或多行。