I need to pick a random word with n letters, n will be the parameter.
I have this:
#!bin/bash
shuf -n1 /usr/share/dict/words
So I know how to pick a random word but not with a specific number of letters.
I need to pick a random word with n letters, n will be the parameter.
I have this:
#!bin/bash
shuf -n1 /usr/share/dict/words
So I know how to pick a random word but not with a specific number of letters.
Try this for words with 3 characters :
If you need a variable :
Explanations of the grep regex :
^: start anchor of line.: any character\{3\}: quantifier of the last character$: end of line anchor