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.
私はファイルを持っています:
a a a b b a c a c b
出したい
a b c
grep または awk を使用して実行できますか
でawk:
awk
$ awk '!u[$0]++' file a b c
このソリューションの良い点は、ファイルを最初に並べ替える必要がないことです。
最も簡単なアプローチ:
sort -u INPUT > OUTPUT