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 f9889434e4

View File

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