Last active
September 24, 2018 14:35
-
-
Save BeanBagKing/71375f9548ae896a0cf4cc2f7ba6e759 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
apt install cowsay fortune lolcat | |
while true; do fortune | cowsay -f `find /usr/share/cowsay/cows/ -type f | sort -R | head -n1` | lolcat -a -s 75; sleep 2; done | |
Kali version: | |
clear; while true; do /usr/games/fortune | /usr/games/cowsay -f `find /usr/share/cowsay/cows/ -type f | sort -R | head -n1` | /usr/games/lolcat -a -s 75; sleep 2; clear; done | |
Credit @jeffmcjunkin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment