Files
information-processing-1_11…/script/word-count.bash
2025-06-26 10:28:01 +09:00

6 lines
104 B
Bash

#!/usr/bin/env bash
# count all words including source code
pandoc --from latex $1 --to plain | wc -w