#!/bin/bash #This prints random words from the Linux dictionary. echo "$(shuf -n 32 /usr/share/dict/words --random-source=/dev/urandom | tr '\n' ' ')"