Files
avo/script/lib.sh
2019-01-22 21:14:59 -08:00

7 lines
156 B
Bash

# Print an error message to the terminal.
print_error() {
local red='\033[0;31m'
local nocolor='\033[0m'
printf "${red}error${nocolor}\t$1\n"
}