Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
で終わる多くの単語を含むファイルがありますが.、そのほとんどは略語です。
.
これらすべての単語を一度だけ表示するリストを出力するにはどうすればよいですか?
それを行う方法の1つは次のとおりです。
egrep -o '\b[^ ]+\.' < list_of_words | sort | uniq
GNU grep を使用している場合は、Perl 互換の正規表現を利用してください。grep -Po '\S*\.(?=$|\s)'
grep -Po '\S*\.(?=$|\s)'
できるよ:
egrep -io ' [a-z.]+\.' input_file | sort -u