Last active
March 26, 2023 15:44
-
-
Save jhollinger/84e4b86e001dd7e133428bdea968ffb6 to your computer and use it in GitHub Desktop.
Nyancat
This file contains 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
#!/usr/bin/env bash | |
red='\e[31m' | |
green='\e[32m' | |
yellow='\e[33m' | |
blue='\e[34m' | |
bold='\033[1m' | |
normal='\e[0m' | |
lines=( | |
"" | |
"+ o + o" | |
" + o + +" | |
"o +" | |
" o + + +" | |
"+ o o + o" | |
"${red}-_-_-_-_-_-_-_${normal},------, o " | |
"${yellow}_-_-_-_-_-_-_-${normal}| /\\_/\\ " | |
"${green}-_-_-_-_-_-_-${normal}~|__( ^ .^) + + " | |
"${blue}_-_-_-_-_-_-_-${normal}\"\" \"\" " | |
" + o o + o" | |
" + +" | |
"o o o o +" | |
" o +" | |
"+ + o o + " | |
"" | |
) | |
for line in "${lines[@]}"; do | |
sleep 0.03 | |
printf "${line}\n" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment