Skip to content

Instantly share code, notes, and snippets.

@ioleo
Last active January 25, 2016 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ioleo/c5a86a1c5785db248549 to your computer and use it in GitHub Desktop.
Save ioleo/c5a86a1c5785db248549 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Pretty yellow message in a box
# Usage:
# yell "My message"
yell() {
dash=$(printf '=%.0s' $(seq 1 ${#1}))
echo $(echo -e "\e[33m.=$dash=.\e[0m" | sed 's/=/-/g')
echo -e "\e[33m| $1 |\e[0m"
echo $(echo -e "\e[33m*=$dash=*\e[0m" | sed 's/=/-/g')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment