Last active
February 11, 2016 17:30
-
-
Save angusiguess/1f3019d850dc1383b61b to your computer and use it in GitHub Desktop.
What's Kanye's album called?
This file contains hidden or 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
# 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 |
This file contains hidden or 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
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