mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-05 19:40:52 -07:00
6 lines
111 B
Bash
Executable file
6 lines
111 B
Bash
Executable file
#! /bin/sh
|
|
|
|
grep -v "'" /usr/share/dict/words | shuf -n 2 | while read word; do
|
|
echo -n "$word "
|
|
done
|
|
echo
|