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 :
grep '^.\{3\}$' /usr/share/dict/words | shuf -n1
num=3
grep "^.\{$num\}\$"
^
: start anchor of line.
: any character\{3\}
: quantifier of the last character$
: end of line anchor