mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-10 09:24:50 +02:00
17 lines
209 B
Bash
17 lines
209 B
Bash
|
#! /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//./\\.}"
|
||
|
}
|