Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 строки
354 B

  1. #!/bin/bash
  2. # This loops the upload-one script while the RUN file exists.
  3. # See upload-one for details.
  4. SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
  5. while [[ -f RUN ]]
  6. do
  7. "${SCRIPT_DIR}/upload-one"
  8. result="${?}"
  9. if [[ "${result}" -ne 0 ]]
  10. then
  11. date
  12. echo "uploader exited with ${result}"
  13. exit "${result}"
  14. fi
  15. done