count_vgpr.sh 98 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
#!/bin/bash
FILE=$1

4
5
6
7
for i in `seq 0 250`
do
    echo	v${i}	$(	grep -w	v${i}	$FILE	| wc -l	)
done