ユーザーのログイン時に実行する必要があるコマンド ライン アプリケーションがあります。ユーザーの起動エージェント ディレクトリに XML ファイルを追加しました。アプリケーションは実行されますが、実行時にターミナルが開くという問題があります。ユーザーが知らないうちにバックグラウンドで実行したい。これは私のplistです:
<?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>LaunchOnlyOnce</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/open</string>
<string>-n</string>
<string>/Applications/Host</string>
</array>
<key>KeepAlive</key>
<false/>
<key>Label</key>
<string>com.test.httphost</string>
<key>RunAtLoad</key>
<true/>
</dict>
これどうやってするの?