大文件去重 #42
guodongxiaren
started this conversation in
教程
大文件去重
#42
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
awk '!x[$0]++' file.txt
比如
sort file.txt|uniq sort -u file.txt
要快
因为awk没有排序!
Beta Was this translation helpful? Give feedback.
All reactions