#!/bin/bash

#This prints a hundred random words.

echo "$(shuf -n 100 /usr/share/dict/words --random-source=/dev/urandom | tr '\n' ' ')"

