Correcting printf call cosmetically in central wrapper when prepending date and time for each command to not choke upon multiple arguments.

This commit is contained in:
Daniel Baumann 2012-08-27 15:43:46 +02:00
parent ddd0ef9dc0
commit de27a82a67
1 changed files with 1 additions and 1 deletions

2
bin/lb
View File

@ -74,7 +74,7 @@ case "${1}" in
exit 1
fi
Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} ${@}"
Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} $(echo ${@})"
${ENV} exec "${SCRIPT}" "${@}"
;;
esac