Headings from h1 through h6 are constructed with a # for each level:
# h1 Heading
## h2 Heading
### h3 Heading| #!/bin/bash | |
| # replication delay threshold | |
| TH_SECONDS_BEHIND=60 | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| SERVER=$(hostname -f) | |
| ERRORS=() |
| # Recursively add a .gitignore file to all directories | |
| # in the working directory which are empty and don't | |
| # start with a dot. Helpful for tracking empty dirs | |
| # in a git repository. | |
| find . -type d -regex ``./[^.].*'' -empty -exec touch {}"/.gitignore" \; |