You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
453 B
Bash
26 lines
453 B
Bash
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
function console_red() {
|
||
|
echo -e "\033[31m "$*" \033[0m"
|
||
|
}
|
||
|
|
||
|
function console_green() {
|
||
|
echo -e "\033[32m "$*" \033[0m"
|
||
|
}
|
||
|
|
||
|
function console_yellow() {
|
||
|
echo -e "\033[33m "$*" \033[0m"
|
||
|
}
|
||
|
|
||
|
function console_blue() {
|
||
|
echo -e "\033[34m "$*" \033[0m"
|
||
|
}
|
||
|
|
||
|
function console_tip() {
|
||
|
console_blue "========================== $* =============================="
|
||
|
}
|
||
|
|
||
|
function console_step() {
|
||
|
console_blue "<<<<<<<<<<<<<<<< $* >>>>>>>>>>>>>>>>"
|
||
|
}
|