1
bashで部分重複を削除するにはどうすればいいですか?
awk、grep、またはsortを使用して、bash内の部分的な重複を削除する方法を教えてください。 やってみた sort -u FILE | uniq -w20 しかし、それは本当に信頼できません。 入力: 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 期待される出力: http://www.website.com/3.file http://www.someotherwebsite.com/3.file