mirror of https://github.com/dirtbags/moth.git
6 lines
96 B
Plaintext
6 lines
96 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
shuf -n 2 /usr/share/dict/words | while read word; do
|
||
|
echo -n "$word "
|
||
|
done
|
||
|
echo
|