Làm cách nào tôi có thể loại bỏ các bản sao một phần trong bash bằng cách sử dụng awk, grep hoặc sort?
Tôi đã thử sort -u FILE | uniq -w20
nhưng nó không thực sự đáng tin cậy.
Đầu vào:
http://www.website.com/1.file
http://www.website.com/2.file
http://www.website.com/3.file
http://www.someotherwebsite.com/1.file
http://www.someotherwebsite.com/2.file
http://www.someotherwebsite.com/3.file
Đầu ra dự kiến:
http://www.website.com/3.file
http://www.someotherwebsite.com/3.file