7 lines
100 B
Bash
Executable File
7 lines
100 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for func in $(cat iofunctions.txt)
|
|
do
|
|
echo "$func: $(grep "$func" *.c | wc -l)"
|
|
done
|