所以我有一個文本文件,裏面是這樣的:如何刪除文本文件中的重複鏈接?
http://example.pl/folder/this_same1.avi
http://example.pl/folder/this_same1.avi
http://example.pl/folder/this_same2.avi
http://example.pl/folder/this_same2.avi
http://example.pl/folder/this_same3.avi
http://example.pl/folder/this_same3.avi
而且我要刪除所有重複的鏈接。 輸出文件看起來是這樣的:
http://example.pl/folder/this_same1.avi
http://example.pl/folder/this_same2.avi
http://example.pl/folder/this_same3.avi
'cat/path/to/file | sort -u' –
@NehalJWani假設OP正在使用Linux ... – DeepSpace
您嘗試過任何操作嗎? SO不是代碼寫入服務。 – DeepSpace