export-deamon.sh 159 B

12345678
  1. #!/bin/bash
  2. while true; do
  3. now=$(date +"%Y-%m-%d--%T")
  4. echo "export contents -- $now"
  5. ./tex2html.sh
  6. echo "sleep 15sec for new export"
  7. sleep 15s
  8. done