Merge pull request #5 from jeremydenoun/fix-echo

Script output should be usefull with pipe or redirection
This commit is contained in:
Thibault Dewailly 2016-05-17 13:28:37 +02:00
commit 3209a4c302

View File

@ -47,7 +47,7 @@ _logger() {
shift
test -z "$SCRIPT_NAME" && SCRIPT_NAME=$(basename $0)
builtin echo "$*" | /usr/bin/logger -t "[CIS_Hardening] $SCRIPT_NAME" -p "user.info"
test -t 1 && cecho $COLOR "$SCRIPT_NAME $*"
cecho $COLOR "$SCRIPT_NAME $*"
}
cecho () {