github.com/techend/deis@v1.0.1-0.20141111224634-e0eee0392b8a/contrib/utils.sh (about)

     1  #!/usr/bin/env bash
     2  
     3  function echo_yellow {
     4    echo -e "\033[0;33m$1\033[0m"
     5  }
     6  
     7  function echo_red {
     8    echo -e "\033[0;31m$1\033[0m"
     9  }
    10  
    11  function echo_green {
    12    echo -e "\033[0;32m$1\033[0m"
    13  }