export-deamon.sh 164 B

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