blob: f54fdca50b68684843e2f811c59d8d7fc4885345 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
reset=`tput sgr0`
red=`tput setaf 1`
green=`tput setaf 2`
yellow=`tput setaf 3`
function log_info() {
echo -e "${green}$*${reset}"
}
function log_warn() {
echo -e "${yellow}$*${reset}"
}
function log_error() {
echo -e "${red}$*${reset}"
}
function log_progress() {
echo -en "${yellow}$*\r${reset}"
}
|