box-o-sand/oldstuff/lcthw-remnants/check-for-iofunctions.sh
2015-06-22 13:15:42 -05:00

7 lines
100 B
Bash
Executable File

#!/bin/bash
for func in $(cat iofunctions.txt)
do
echo "$func: $(grep "$func" *.c | wc -l)"
done