You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
654 B
24 lines
654 B
#!/usr/bin/env bash
|
|
|
|
# Print nyan cat
|
|
# https://github.com/steckel/Git-Nyan-Graph/blob/master/nyan.sh
|
|
# If you want big animated version: `telnet miku.acm.uiuc.edu`
|
|
|
|
RED="$(tput setaf 1)"
|
|
GREEN="$(tput setaf 2)"
|
|
YELLOW="$(tput setaf 3)"
|
|
CYAN="$(tput setaf 6)"
|
|
WHITE="$(tput setaf 7)"
|
|
BOLD="$(tput bold)"
|
|
NOCOLOR="$(tput sgr0)"
|
|
|
|
echo
|
|
echo -en $RED'-_-_-_-_-_-_-_'
|
|
echo -e $NOCOLOR$BOLD$WHITE',------,'$NOCOLOR
|
|
echo -en $YELLOW$WHIT'_-_-_-_-_-_-_-'
|
|
echo -e $NOCOLOR$BOLD$WHITE'| /\_/\\'$NOCOLOR
|
|
echo -en $GREEN'-_-_-_-_-_-_-'
|
|
echo -e $NOCOLOR$BOLD$WHITE'~|__( ^ .^)'$NOCOLOR
|
|
echo -en $CYAN'-_-_-_-_-_-_-'
|
|
echo -e $NOCOLOR$BOLD$WHITE'"" ""'$NOCOLOR
|
|
echo
|
|
|