Skip to content

Instantly share code, notes, and snippets.

@erkiesken
Created April 13, 2023 06:44
Show Gist options
  • Save erkiesken/325acd8656855a7efb550e196dfcde30 to your computer and use it in GitHub Desktop.
Save erkiesken/325acd8656855a7efb550e196dfcde30 to your computer and use it in GitHub Desktop.
Robot Cow
export COWPATH=~/.config/cowsay
alias botsay="cowsay -f robot"
➜ cat ~/.config/cowsay/robot.cow
##
## Robot!
##
$the_cow = <<EOC;
<\\
\\
.=====\\==.
| ' |
\\________|
(_)(_)(_)
EOC
➜ export COWPATH=~/.config/cowsay
➜ cowsay -f robot 'Hello. I am 6E808, aka Bob. Nice to meet you you!'
_____________________________________
/ Hello. I am 6E808, aka Bob. Nice to \
\ meet you you! /
-------------------------------------
<\
\
.=====\==.
| ' |
\________|
(_)(_)(_)
➜ alias botsay="cowsay -f robot"
##
## Robot!
##
$the_cow = <<EOC;
<\\
\\
.=====\\==.
| ' |
\\________|
(_)(_)(_)
EOC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment