Skip to content

Commit b3698eb

Browse files
committed
Add stats util
1 parent 5deb99f commit b3698eb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

stats

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
sort -n | awk '
3+
{s+=$0;a[i++]=$0}
4+
END{
5+
print "Cnt: "NR;
6+
print "Sum: "s;
7+
print "Min: "a[0];
8+
print "Max: "$0;
9+
print "Avg: "s/NR;
10+
print "Med: "a[int(NR/2)];
11+
}
12+
'

0 commit comments

Comments
 (0)