docker-mailserver/target/bin-helper.sh

17 lines
209 B
Bash
Executable File

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