我有一些问题,我没有找到,也不知道如何在我的脚本中实现良好的排序。我想对一些输入字符串进行排序,向我展示冗余(一些重复),然后从这里返回最大重复的行,如果我有更多相同的重复,例如
输入 :
qwe1
qwe1
wer2
wer2
wer4
输出://我想要的
2 qwe1
input:
asd1
asd1
asd1
asd2
asd2
asd2
asd3
asd3
asd3
output: // What i want
3 asd1 // If I have a the same name return id of alphabeticall first
#!/bin/bash
sort -n|uniq -c -i | sort -dr | head -n1
我尝试了一些其他的论点,但我没有找到解决方案。
对不起我的英语,请有人可以帮助我吗?