Yabin Li
2023-04-24 7ab2e5cf22bbb31808bcacf84c054c710e4e6a93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
 
default='\033[0m'
bold='\033[1m'
red='\033[31m'
green='\033[32m'
 
function ok() {
  printf "${bold}${green}[OK]${default} $1\n"
}
 
function error() {
  printf "${bold}${red}[FAILED]${default} $1\n"
}
 
function abort() {
  printf "${bold}${red}[FAILED]${default} $1\n"
  exit 1
}