-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathnyan
More file actions
executable file
·37 lines (35 loc) · 819 Bytes
/
Copy pathnyan
File metadata and controls
executable file
·37 lines (35 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
#
# Print nyan dog.
#
# - Print:
#
# `nyan`
#
# ---
# Author: Nick Plekhanov, https://plekhanov.me
# License: MIT
# https://github.com/nicksp/dotfiles
#
## Dogs inspiration:
# https://www.asciiart.eu/animals/dogs
RED="$(tput setaf 1)"
GREEN="$(tput setaf 2)"
YELLOW="$(tput setaf 3)"
CYAN="$(tput setaf 6)"
MAGENTA="$(tput setaf 5)"
WHITE="$(tput setaf 7)"
BOLD="$(tput bold)"
RESET="$(tput sgr0)"
echo
echo -en $RED'-_-_-_-_-_-_-_-'
echo -e $RESET$BOLD$WHITE'/\\___/\\'$RESET
echo -en $YELLOW'_-_-_-_-_-_-_-_'
echo -e $RESET$BOLD$WHITE'`)@ @('"'"''$RESET
echo -en $GREEN'-_-_-_-_-_-_-_-'
echo -e $RESET$BOLD$WHITE'{_:Y:.}_'$RESET
echo -en $CYAN'_-_-_-_-_-_-_-_'
echo -e $RESET$BOLD$WHITE'( )U-'"'"'( )'$RESET
echo -en $MAGENTA'-_-_-_-_-_-_-_-'
echo -e $RESET$BOLD$WHITE'``` '"'"''"'"''"'"''$RESET
echo