Skip to content

Instantly share code, notes, and snippets.

@jhollinger
Last active March 26, 2023 15:44
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 jhollinger/84e4b86e001dd7e133428bdea968ffb6 to your computer and use it in GitHub Desktop.
Save jhollinger/84e4b86e001dd7e133428bdea968ffb6 to your computer and use it in GitHub Desktop.
Nyancat
#!/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