Skip to content

Instantly share code, notes, and snippets.

@atomicbird
Last active July 18, 2019 15:22
Embed
What would you like to do?
It's like Uber for howdy.
#!/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