#!/bin/sh
inotifywait -q -m -e close_write /var/www/html/howtos/linux/*adoc |
while read -r filename event; do
asciidoctor $filename
done
07 Februar 2019
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