2
2 시간마다 Applescript 실행 시작
2 시간마다 자동으로 실행하고 싶은 작은 애플 스크립트를 작성했습니다. 따라서 다음과 같은 시작된 데몬을 작성했습니다 (아마도 에이전트 임). <?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>Disabled</key> <false/> <key>Label</key> <string>com.zerowidth.launched.aspect</string> <key>Program</key> <string>/usr/bin/osascript</string> <key>ProgramArguments</key> <array> <string>osascript</string <string>/Users/***/my_script.scpt</string> </array> <key>StandardOutPath</key> <string>/Users/***/file_log.log</string> <key>RunAtLoad</key> <true/> <key>ThrottleInterval</key> <integer>7200</integer> <key>KeepAlive</key> <true/> …