mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2026-02-05 16:19:10 +00:00
6 lines
192 B
Bash
Executable File
6 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# We dont care about non alphanumerics filenames so we just ls | grep to shorten the script.
|
|
|
|
echo $(( $(ls ./challenges/ | grep ".*md" -c) + $(grep \</summary\> -c README.md) ))
|