Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> 除去文件中的重復數據

除去文件中的重復數據

日期:2017/1/20 17:42:50      編輯:Linux系統常見問題解答

1.先對文件內容排序:cat 1.txt |sort > 2.txt 保存到2.txt中

2.使用vim打開2.txt 執行替換命令:

替換空格:%s/ //g

替換tab:%s/^I//g   (注意:^I 是直接按鍵盤是的tab鍵)

替換$:  %s/^M//g (注意:^M 是按ctrl+v 再按Enter鍵)

3.cat 2.txt | uniq > 3.txt

Copyright © Windows教程網 All Rights Reserved