echo.sh 453 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. function console_red() {
  3. echo -e "\033[31m "$*" \033[0m"
  4. }
  5. function console_green() {
  6. echo -e "\033[32m "$*" \033[0m"
  7. }
  8. function console_yellow() {
  9. echo -e "\033[33m "$*" \033[0m"
  10. }
  11. function console_blue() {
  12. echo -e "\033[34m "$*" \033[0m"
  13. }
  14. function console_tip() {
  15. console_blue "========================== $* =============================="
  16. }
  17. function console_step() {
  18. console_blue "<<<<<<<<<<<<<<<< $* >>>>>>>>>>>>>>>>"
  19. }