On 2013–08–27 Marco Patzer wrote: > while true do > inotifywait --event modify somefile.tex; context --batchmode somefile.tex > done
Better:
file='somefile.tex'
while inotifywait --event modify "$file"; do
context --batchmode "$file"
done
For BSDs/MacOS: http://en.wikipedia.org/wiki/Kqueue
For Windows: http://schneider.ncifcrf.gov/atchange.html
Marco
signature.asc
Description: Digital signature
___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : [email protected] / http://www.ntg.nl/mailman/listinfo/ntg-context webpage : http://www.pragma-ade.nl / http://tex.aanhet.net archive : http://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________
