Macのlaunchdで定期実行させるプログラムを作りたいと思い、試しに以下のコードを作成致しました。
launchctl load /Library/LaunchAgents/test.plist
でtest.plistを実行したところ標準エラー出力にcan't open file '/Users/UserName/Desktop/alert.py': [Errno 1] Operation not permitted
がでました。
権限がないようなのでターミナル でchmod 777 /Users/UserName/Desktop/alert.py
をしてみたのですが、同じエラーが出たままです。
何が原因かわかる方がおられましたらお知恵を貸していただけませんでしょうか...??
plist
1# /Library/LaunchAgents/test.plist 2 3<?xml version="1.0" encoding="UTF-8"?> 4<!DOCTYPE plist PUBLIC -//Apple//DTDPLIST1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 5<plist version="1.0"> 6<dict> 7 <key>Label</key> 8 <string>test</string> 9 <!-- 実行するファイルを定義 --> 10 <key>ProgramArguments</key> 11 <array> 12 <string>python3</string> 13 <string>/Users/UserName/Desktop/alert.py</string> 14 </array> 15 <!-- 自動起動の指定(OS起動時にサービスを起動するかどうか) --> 16 <key>RunAtLoad</key> 17 <true/> 18 <!-- 出力先:tmp/plistファイル名.errと.outで定義 --> 19 <key>StandardErrorPath</key> 20 <string>/tmp/test.err</string> 21 <key>StandardOutPath</key> 22 <string>/tmp/test.out</string> 23 <!-- 実行条件(間隔)を設定 --> 24 <key>StartInterval</key> 25 <integer>10</integer> 26</dict> 27</plist>
py
1# /Users/UserName/Desktop/alert.py 2 3print('foo')
# /private/tmp/test.errのエラー内容 /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python: can't open file '/Users/UserName/Desktop/alert.py': [Errno 1] Operation not permitted
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。