Last active
February 13, 2022 11:08
-
-
Save angusjf/5da0ef0bddf087e8d700d1563cea41d8 to your computer and use it in GitHub Desktop.
prints a color text image of a bonsai tree. not mine but i can't remember where i found it
This file contains 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 | |
# prints a color text image of a tree | |
echo -e " \033[0;32m&&" | |
echo -e " \033[0;32m&&&&&" | |
echo -e " \033[0;32m&&&\/& &&&" | |
echo -e " \033[0;32m&&\033[0;33m|,/ |/\033[0;32m& &&" | |
echo -e " \033[0;32m&&\033[0;33m/ / /_\033[0;32m& &&" | |
echo -e " \033[0;33m\ { |_____/_\033[0;32m&" | |
echo -e " \033[0;33m{ / / \033[0;32m&&&" | |
echo -e " \033[0;33m.\`. \\{___\________\/_\}" | |
echo -e " \033[0;33m\} \}\{ \\" | |
echo -e " \033[0;33m}\{\{ \\____\033[0;32m&" | |
echo -e " \033[0;33m\{\}\{ \`\033[0;32m&\033[0;33m\\033[0;32m&&" | |
echo -e " \033[0;33m{{} \033[0;32m&&" | |
echo -e " \033[0;33m, -=-~{ .-^- _" | |
echo -e " \`}" | |
echo -e " {" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment