1
스크립트 오류가 발생했을 때 cron과 같은 실행 스크립트를 다시 스팬하는 방법은 무엇입니까?
StartCalendarInterval웹 사이트 데이터를 하루에 한 번 백업 하는 크론과 같은 실행 스크립트 ( )가 있습니다. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.example.backup</string> <key>ProgramArguments</key> <array> <string>/Volumes/Example/backup.sh</string> </array> <key>StartCalendarInterval</key> <array> <dict> <key>Hour</key> <integer>2</integer> <key>Minute</key> <integer>15</integer> </dict> </array> <key>StandardErrorPath</key> <string>/var/log/com.example/backup_error</string> <key>StandardOutPath</key> <string>/var/log/com.example/backup_output</string> </dict> </plist> 드물게 …