8 lines
233 B
Plaintext
8 lines
233 B
Plaintext
|
#!/bin/sh
|
||
|
[ "${IEP_VERBOSE:-}" = 0 ] || {
|
||
|
pfx=
|
||
|
[ "${IEP_DEBUG:-}" = 0 ] || pfx="$(date +'%Y-%m-%d %H:%M:%S.%03N %z'): "
|
||
|
echo "# ${pfx}${0##*/}:" >&2
|
||
|
printf ' - %s\n' "$@" >&2
|
||
|
}
|
||
|
exec python3 "/usr/local/lib/j2cfg/${0##*/}.py" "$@"
|