99c4e02ecf
Name it instead "topics" so it won't be strange if some topics included "exercises" directory.
4 lines
140 B
Bash
Executable File
4 lines
140 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo $(( $(grep -E "\[Exercise\]|</summary>" -c README.md topics/*/README.md | awk -F: '{ s+=$2 } END { print s }' )))
|