diff options
| -rw-r--r-- | index.md | 3 | ||||
| -rwxr-xr-x | update-count.sh | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -1,6 +1,5 @@ # Peniblec's Memory Leaks -## possibly lost: 530 words in 1 pages -## still reachable: 240 words in 1 pages +## still reachable: 232 words in 1 pages Hi! I am a software engineer interested in [a bunch of things]. diff --git a/update-count.sh b/update-count.sh index e7ebf8f..eb9b5e2 100755 --- a/update-count.sh +++ b/update-count.sh @@ -1,6 +1,6 @@ #!/bin/bash -list-committed () +list-tracked () { GIT_LITERAL_PATHSPECS='' git ls-files '*.md' } @@ -21,7 +21,7 @@ count-leaks () -read words pages < <(list-committed | count-leaks) +read words pages < <(list-tracked | count-leaks) pattern="\([0-9]*\) words in \([0-9]*\) pages" actual="${words} words in ${pages} pages" |
