Skip to content

Instantly share code, notes, and snippets.

@thebsdbox
Last active May 20, 2020 22:22
Show Gist options
  • Select an option

  • Save thebsdbox/9788e2d7e0e50569fd9d5996431e3d0b to your computer and use it in GitHub Desktop.

Select an option

Save thebsdbox/9788e2d7e0e50569fd9d5996431e3d0b to your computer and use it in GitHub Desktop.
Docker Con colour ASCII
#!/bin/bash
# Either run as a standalone, or add to .bash_profile to start on new session
RED=$(tput setaf 1 2>/dev/null)
GREEN=$(tput setaf 2 2>/dev/null)
YELLOW=$(tput setaf 3 2>/dev/null)
BLUE=$(tput setaf 4 2>/dev/null)
PURPLE=$(tput setaf 5 2>/dev/null)
CYAN=$(tput setaf 6 2>/dev/null)
WHITE=$(tput bold 2>/dev/null)
normal=$(tput sgr0 2>/dev/null)
echo -e "
${BLUE# } ## ${CYAN# } .
${BLUE# } ## ## ## ${CYAN# } ==
${BLUE# } ## ## ## ## ## ${CYAN# } ===
${CYAN# } /\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\___/ ===
${BLUE# } ~~~ ${CYAN# }{${BLUE# }~~ ~~~~ ~~~ ~~~~ ~~~ ~ ${CYAN# }/ ===- ${BLUE# }~~~
${CYAN# } \______ o __/${YELLOW# } ==============docker
${CYAN# } \ \ __/ ${RED# }=======================con
${CYAN# } \____\_______/ ${BLUE# }=============================17
${normal# }
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment