mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
16 lines
191 B
Bash
Executable file
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//./\\.}"
|
|
}
|