docker-mailserver/target/bin-helper.sh
Georg Lauterbach ed7106b04d
housekeeping
2020-11-06 14:04:23 +01:00

16 lines
191 B
Bash
Executable file

#! /bin/bash
# executed from scripts in target/bin/
# task provides frequently used functions
function errex
{
echo "${@}" 1>&2
exit 1
}
function escape
{
echo "${1//./\\.}"
}