box-o-sand/check-for-iofunctions.sh

7 lines
100 B
Bash
Raw Normal View History

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