2
0
mirror of https://github.com/tomav/docker-mailserver synced 2025-08-22 18:07:30 +00:00
2022-03-02 22:54:14 +00:00

14 lines
227 B
Bash

#! /bin/bash
function _escape
{
echo "${1//./\\.}"
}
# Check if string input is an empty line, only whitespaces
# or `#` as the first non-whitespace character.
function _is_comment
{
grep -q -E "^\s*$|^\s*#" <<< "${1}"
}