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

7 lines
100 B
Bash
Executable File

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