标签:image -bash tools 文件 info tool jpg ima 排序
统计一个文件中前两列字符(字符串出现的次数并从大到小排序)
源文本内容如下:
统计结果如下:
cat test.txt | awk -F" " ‘{for(i=1; i<=2; i++) {print $i}}‘ | sort | uniq -c | sort -nr
标签:image -bash tools 文件 info tool jpg ima 排序
原文地址:https://www.cnblogs.com/hlssz/p/12842029.html