Skip to content

Instantly share code, notes, and snippets.

@angusiguess
Last active February 11, 2016 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angusiguess/1f3019d850dc1383b61b to your computer and use it in GitHub Desktop.
Save angusiguess/1f3019d850dc1383b61b to your computer and use it in GitHub Desktop.
What's Kanye's album called?
# TLOP by speaking the sefirot.
while [ "$tlop" != "the life of Pablo" ];
do
tlop=$(echo `grep "^[tT].*" /usr/share/dict/american-english | shuf -n 1` `grep "^[lL].*" /usr/share/dict/american-english | shuf -n 1` `grep "^[oO].*" /usr/share/dict/american-english| shuf -n 1` `grep "^[pP].*" /usr/share/dict/american-english| shuf -n 1`)
echo $tlop
sleep 2
done
echo `grep "^[tT].*" /usr/share/dict/american-english | shuf -n 1` `grep "^[lL].*" /usr/share/dict/american-english | shuf -n 1` `grep "^[oO].*" /usr/share/dict/american-english| shuf -n 1` `grep "^[pP].*" /usr/share/dict/american-english| shuf -n 1`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment