Created
August 12, 2014 04:45
-
-
Save stinethebean3/3b3b866b7efa3d9b7ba2 to your computer and use it in GitHub Desktop.
Makes a picture of a cow say what you want
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| count=${#*} | |
| for word in $* ; do | |
| count=$(($count+${#word})) | |
| done | |
| echo -n " " | |
| for i in $(eval echo {0..$count}); do | |
| echo -n _; | |
| done | |
| echo " " | |
| echo "< $* >" | |
| echo -n " " | |
| for i in $(eval echo {0..$count}); do | |
| echo -n -; | |
| done | |
| echo " " | |
| echo " \ ^__^" | |
| echo " \ (oo)\_______" | |
| echo " (__)\ )\/\ " | |
| echo " ||----w |" | |
| echo " || ||" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment