Files
information-processing-1_13…/script/word-count.bash
2025-07-10 10:23:35 +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