Skip to content

Instantly share code, notes, and snippets.

@skratchdot
Created September 15, 2022 12:07
Show Gist options
  • Save skratchdot/4e380617d665512747a28f34201df4d6 to your computer and use it in GitHub Desktop.
Save skratchdot/4e380617d665512747a28f34201df4d6 to your computer and use it in GitHub Desktop.
list word length counts from 1 to 24
#!/usr/bin/env bash
for i in {1..24}
do
cat /usr/share/dict/words | grep -E "^.{$i}$" | wc -l
done
: '
OUTPUT:
52
160
1420
5272
10230
17706
23869
29989
32403
30878
26013
20462
14939
9765
5925
3377
1813
842
428
198
82
41
17
5
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment