kleine adoc Helferlein: autocompile

07 Februar 2019

asciidoc autocompile

asciidoctor ausführen, sobald eine *.adoc Datei gespeichert wird

#!/bin/sh

inotifywait -q -m -e close_write /var/www/html/howtos/linux/*adoc |
while read -r filename event; do
    asciidoctor $filename
done