hourly.sh 194 B

123456789101112131415
  1. #!/bin/sh
  2. # https://mro.name/radio-privatkopie
  3. #
  4. cd "$(dirname "${0}")/../../stations/" || exit 1
  5. for st in ./*/app/scrape.sh
  6. do
  7. sh "${st}" 2>> ../error.log &
  8. done
  9. wait
  10. touch ../error.log