From 5d1c2e0dfd936c1de38b4d954fdf28eab0a27140 Mon Sep 17 00:00:00 2001 From: surister Date: Tue, 17 Dec 2019 09:16:28 +0100 Subject: [PATCH] fix typo --- scripts/count_questions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/count_questions.sh b/scripts/count_questions.sh index 43a1ffa..97b7df0 100755 --- a/scripts/count_questions.sh +++ b/scripts/count_questions.sh @@ -1,5 +1,5 @@ #!/bin/bash -# We dont care about non alphanumerics filenames so we just ls | grep to shortern the script. +# We dont care about non alphanumerics filenames so we just ls | grep to shorten the script. echo $(( $(ls ./scenarios/ | grep ".*md" -c) + $(grep \ -c README.md) ))