I am generating 50 random strings, each 11-character long by running:
cat /dev/urandom | LC_ALL=C tr -dc 'A-Z' | fold -w 11 | head -n 50
Now, how could I constrain the first character to always be letter R?
RHFEKGJTUSJW
RJGHSGWNGHT
RJGHTYWERRT
RTHNBMVUFGH
RLOPOPITYWV
.....
Thanks for any hint