scsh 1.30.6

Scoped Skills Helper — preflight a git repo and run its scoped skills in ephemeral containers.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Word statistics

`wordstats.py` reads text from standard input and prints the ten most common words as
tab-separated `word` and `count` rows.

```sh
printf 'Pear apple pear\n' | python3 wordstats.py
```

Run the tests with:

```sh
python3 -m unittest -v
```