在文件中搜索这些数字时如何输出 1-30 以及它们出现的次数

在文件中搜索这些数字时如何输出 1-30 以及它们出现的次数

我有一个文本文件https://1drv.ms/t/s!AjlMpzDMn2h7hWKyBGBxdhHXwjm8

最后一列充满了从 1 到 30 的数字。

我需要一个代码来列出 1-30 中的每个数字,同时还会显示它在该列中出现的次数。

所以它看起来像

1=13
2=10
3=12 
.... up until 30.

目前我有一段代码,我相信如果我正确修改它就会起作用。

awk -F':' 'BEGIN{ split("sparkling fine fortified sweet white red", words, " ") }
       $3 in words{ c[$3]++ }
       END{ for(i in words) print words[i]"="c[i] }' file

答案1

简单的方法(使用文件的第一行):

:> awk -F: '{ print $5; }' input | sort -n | uniq -c
 2 1
 5 2
 4 3
 5 4
 2 5

:> awk -F: '{ print $5; }' input | sort -n | uniq -c |
    while read count number; do echo "${number}=${count}"; done
1=2
2=5
3=4
4=5
5=2

仅使用 awk

:> awk -F: '{a[$5]++}; END { for(i=1;i<31;i++) printf "%2d=%d\n",i,a[i]; }' input
 1=2
 2=5
 3=4
 4=5
 5=2

相关内容