view gen_readme.sh @ 2876:9408af32ed62

Fix #650, 651: fullscreen does not work over multiple monitors https://github.com/BestImageViewer/geeqie/issues/650
author Jiří Boháč <>
date Wed, 19 Dec 2018 10:10:10 +0000
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