1
1
Fork 0
mirror of https://github.com/docker-mailserver/docker-mailserver synced 2024-05-05 20:16:05 +02:00
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//./\\.}"
}