view gen_readme.sh @ 2834:a407b635d249

Fix #632: Add FILES section to manual page https://github.com/BestImageViewer/geeqie/pull/632
author Andreas Rönnquist <>
date Mon, 24 Sep 2018 11:10:02 +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