This commit is contained in:
Miloslav Ciz 2024-08-27 22:53:54 +02:00
parent 3816e78230
commit 1ed9079ad4
50 changed files with 1892 additions and 1863 deletions

View file

@ -22,10 +22,10 @@ cat *.md | wc -l >> $FILE_NAME
printf -- "- number of script lines: " >> $FILE_NAME
cat *.sh | wc -l >> $FILE_NAME
printf -- "- occurences of the word \"person\": " >> $FILE_NAME
printf -- "- occurrences of the word \"person\": " >> $FILE_NAME
grep -o -i "person[s \n\.,]" *.md | wc -l >> $FILE_NAME
printf -- "- occurences of the word \"nigger\": " >> $FILE_NAME
printf -- "- occurrences of the word \"nigger\": " >> $FILE_NAME
grep -o -i "[^\[]nigger" *.md | wc -l >> $FILE_NAME
printf "\nlongest articles:\n\n" >> $FILE_NAME