Questions tagged «uniq»

4
是否有与Unix uniq等效的Windows?
我需要从文本文件中删除重复的行,在Linux中使用 cat file.txt |sort | uniq 当file.txt包含 aaa bbb aaa ccc 它将输出 aaa bbb ccc Windows是否等效?或如何以Windows方式执行此操作?
17 windows  sorting  uniq 


1
如何根据子字符串过滤唯一行?
如果文件中有一组URL,例如: http://example.com/do?foo=bar&etc=123 http://example.com/do?etc=456&foo=bar 我想将其过滤掉,以便“ foo”参数的每个唯一值只有一个网址。URL的其余部分无关紧要,对我来说唯一重要的是,我没有两行或更多行具有相同的'foo'值。
-1 linux  unix  sed  awk  uniq 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.