From 46da44abbedc58b918fa78c022bde2afcdd3ef6e Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Mon, 5 Mar 2018 19:23:12 +0100 Subject: Add title page and word-count script --- hooks/post-commit | 19 +++++++++++++++++++ index.md | 9 +++++++++ update-count.sh | 22 ++++++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100755 hooks/post-commit create mode 100644 index.md create mode 100755 update-count.sh diff --git a/hooks/post-commit b/hooks/post-commit new file mode 100755 index 0000000..8e92990 --- /dev/null +++ b/hooks/post-commit @@ -0,0 +1,19 @@ +#!/bin/bash + +if [ -f .UPDATING_COUNT ] +then + exit 0 +fi + +echo "Checking word count…" + +./update-count.sh + +if git diff --quiet --exit-code -- index.md +then + exit 0 +fi + +touch .UPDATING_COUNT +git commit --amend --no-edit -- index.md +rm .UPDATING_COUNT diff --git a/index.md b/index.md new file mode 100644 index 0000000..a27f257 --- /dev/null +++ b/index.md @@ -0,0 +1,9 @@ +# Peniblec's Memory Leaks +## still reachable: 55 words in 1 pages + +I was worrying about forgetting stuff so I started taking notes; then +I started worrying about scattering my notes over several antediluvian +computers so I figured I should put them all in one repository and +back them up somewhere. + +This is the somewhere. diff --git a/update-count.sh b/update-count.sh new file mode 100755 index 0000000..abc8d42 --- /dev/null +++ b/update-count.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +count-leaks () +{ + let pages=0 + let words=0 + + while read filename + do + let words+=$(wc -w ${filename} | cut -d' ' -f1) + let pages+=1 + done + + echo ${words} ${pages} +} + +read words pages < <(find . -name '*.md' | count-leaks) + +pattern="\([0-9]*\) words in \([0-9]*\) pages" +actual="${words} words in ${pages} pages" + +sed -i "s/${pattern}/${actual}/" index.md -- cgit v1.2.3