This commit is contained in:
Miloslav Ciz 2024-01-24 18:11:37 +01:00
parent 243a1a72be
commit c51457b646
17 changed files with 54 additions and 30 deletions

View file

@ -10,6 +10,9 @@ printf "# LRS Wiki Stats\n\nThis is an autogenerated article holding stats about
printf -- "- number of articles: " >> $FILE_NAME
ls *.md | wc -l >> $FILE_NAME
printf -- "- number of commits: " >> $FILE_NAME
git rev-list --count --all >> $FILE_NAME
printf -- "- total size of all texts in bytes: " >> $FILE_NAME
cat *.md | wc -c >> $FILE_NAME