12345678910111213141516171819202122 |
- # Colors
- RED="\e[31m"
- GREEN="\e[32m"
- YELLOW="\e[33m"
- RESET="\e[0m"
- # Functions
- echo_error() {
- echo -e "${RED}$1${RESET}"
- }
- echo_warning() {
- echo -e "${YELLOW}$1${RESET}"
- }
- echo_success() {
- echo -e "${GREEN}$1${RESET}"
- }
|