view gen_readme.sh @ 2906:fcfb8b820b85

Merge merge requests 641, 638, 630 and 627 Just pro forma as they are already in the history. * github/merge-requests/641: Add export-jpg to POTFILES.in * github/merge-requests/638: Avoid non-portable == for the test command * github/merge-requests/630: add headline field * github/merge-requests/627: Add awk shebang to geocode-parameters.awk
author Klaus Ethgen <Klaus@Ethgen.de>
date Tue, 05 Feb 2019 21:18:18 +0100
parents e083bab50112
children
line wrap: on
line source

#!/bin/bash

# Script to create README.html file,

[ ! -e "README.md" ] && exit 1
[ ! -x "$(command -v markdown)" ] && exit 0

[ -e README.html ] && mv -f README.html README.html.bak

markdown README.md > README.html

exit 0