mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-07-30 14:09:14 +00:00
Coloured output is tedious to parse, even unnecessary where the report backend is not a terminal. Signed-off-by: Peter <lusitania@users.noreply.github.com>
21 lines
352 B
Bash
21 lines
352 B
Bash
#!/bin/sh
|
|
|
|
logit () {
|
|
printf "%b\n" "$1" | tee -a "$logger"
|
|
}
|
|
|
|
info () {
|
|
printf "%b\n" "${bldblu}[INFO]${txtrst} $1" | tee -a "$logger"
|
|
}
|
|
|
|
pass () {
|
|
printf "%b\n" "${bldgrn}[PASS]${txtrst} $1" | tee -a "$logger"
|
|
}
|
|
|
|
warn () {
|
|
printf "%b\n" "${bldred}[WARN]${txtrst} $1" | tee -a "$logger"
|
|
}
|
|
|
|
yell () {
|
|
printf "%b\n" "${bldylw}$1${txtrst}\n"
|
|
}
|