Last active
July 18, 2019 15:22
-
-
Save atomicbird/6ad83ff544ea23d265b2 to your computer and use it in GitHub Desktop.
It's like Uber for howdy.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
say "Warming up the pitch engine..." | |
for word in `sort -R /usr/share/dict/words` | |
do | |
PITCH="It's like Uber for $word." | |
echo $PITCH | |
say $PITCH | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment