Files
information-processing-1_14…/script/word-count.bash
2025-07-15 13:16:51 +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