mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-05 11:30:41 -07:00
6 lines
No EOL
96 B
Bash
Executable file
6 lines
No EOL
96 B
Bash
Executable file
#! /bin/sh
|
|
|
|
shuf -n 2 /usr/share/dict/words | while read word; do
|
|
echo -n "$word "
|
|
done
|
|
echo |