summaryrefslogtreecommitdiff
path: root/ACE/bin/group_test_stats.sh
blob: 3f64b9cea32346b2eedd8ab579bcc158eeca5453 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

if test -e tmp; then unlink tmp; fi
if test -e tmp2; then unlink tmp2; fi
cat t.txt | grep '+[a-z|A-Z]' > tmp
sort tmp | uniq -c > tmp2
unlink tmp
sort -n -r tmp2 > uniq.txt
unlink tmp2
cat uniq.txt