wikiparser/lib.sh
Evan Lloyd New-Schmidt 0fc43767aa Add script
Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com>
2023-08-07 17:05:03 -04:00

7 lines
180 B
Bash

# Shared functions for scripts
# shellcheck shell=bash
# Write message to stderr with a timestamp and line ending.
log () {
echo -e "$(date '+%Y-%m-%dT%H:%M:%SZ')" "$@" >&2
}