Created
March 22, 2016 00:51
-
-
Save devvyn/227b1c437942346020ba to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
commands=(cow{say,think}); while [ "rainbows are delightful" ]; do (fortune | ${commands[$RANDOM % ${#commands[@]}]} -f $(cowsay -l | tail -n+2 | xargs -n 1 | sort -R | head -n 1) | lolcat -a ) && sleep 2; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not bad. Endless loop of random, rainbow cows saying random things.