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