diff options
Diffstat (limited to 'base/nyan')
-rwxr-xr-x | base/nyan | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/base/nyan b/base/nyan new file mode 100755 index 0000000..5929327 --- /dev/null +++ b/base/nyan @@ -0,0 +1,24 @@ +#!/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 |