mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2025-02-13 19:52:08 +02:00
10 lines
280 B
Bash
Executable File
10 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
count=$(echo $(( $(grep -E "\[Exercise\]|</summary>" -c README.md topics/*/README.md | awk -F: '{ s+=$2 } END { print s }' ))))
|
|
|
|
echo "There are $count questions and exercises"
|
|
|
|
sed -i "s/currently \*\*[0-9]*\*\*/currently \*\*$count\\**/" README.md
|