Created
September 15, 2022 12:07
-
-
Save skratchdot/4e380617d665512747a28f34201df4d6 to your computer and use it in GitHub Desktop.
list word length counts from 1 to 24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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