Sign in
flutter
/
third_party
/
openssl
/
aeb5b95576025d651c4941e7a5c157351094de84
/
.
/
crypto
/
lhash
/
num.pl
blob: 4440a992dccd4ac84f3531d85b11df2155997af7 [
file
]
#!/usr/local/bin/perl
#node 10 -> 4
while
(<>)
{
next
unless
/^
node
/;
s
|
\R$
||;
# Better chomp
@a
=
split
;
$num
{
$a
[
3
]}++;
}
@a
=
sort
{
$a
<=>
$b
}
keys
%
num
;
foreach
(
0
..
$a
[
$
#a])
{
printf
"%4d:%4d\n"
,
$_
,
$num
{
$_
};
}