You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/metalog/files/consolelog.sh-r1

20 lines
276 B

#!/bin/sh
# consolelog.sh
# For metalog -- log to a console
set -f
. /etc/conf.d/metalog
: "${CONSOLE:=/dev/console}"
# shellcheck disable=SC2016
: "${FORMAT:='$1 [$2] $3'}"
for d in ${CONSOLE} ; do
# shellcheck disable=SC2086
eval echo ${FORMAT} > "${d}"
done
exit 0