gpt4 book ai didi

macos - launchd:WatchPaths 不会触发简单的 "hello world"脚本 (OS X 10.8)

转载 作者:行者123 更新时间:2023-11-29 09:00:15 31 4
gpt4 key购买 nike

这里有一个奇怪的问题。我有 ~/Library/LaunchAgents/com.me.helloworld.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>Label</key>
<string>com.me.helloworld</string>
<key>ProgramArguments</key>
<array>
<string>/Users/me/temp/test.sh</string>
</array>
<key>WatchPaths</key>
<array>
<string>/Users/me/temp/Journal.txt</string>
</array>
</dict>
</plist>

思路是,如果修改了~/temp/Journal.txt,应该执行~/temp/test.sh。 test.sh 包含以下内容:

#!/bin/bash
echo "hello world from test.sh" >> itchanged.txt

因此,如果我更改 Journal.txt,我应该得到一个名为 itchanged.txt 的文件。当我执行以下操作时:

$ launchctl unload ~/Library/LaunchAgents/com.me.helloworld.plist
$ launchctl load ~/Library/LaunchAgents/com.me.helloworld.plist
$ touch Journal.txt

执行 ls 显示未创建 test.txt。但是,如果我手动执行 ./test.sh,则会创建 itchanged.txt。因此,问题似乎在于识别 Journal.txt 已更改并在发生这种情况时执行脚本。

我使用的是 OS X Mountain Lion。有什么想法吗?

最佳答案

您的脚本没有为 itchanged.txt 指定路径;由于 launchd 启动的进程的默认工作目录是/,而您的帐户可能没有在那里创建文件的权限,因此永远不会创建 itchanged.txt。您应该在脚本中指定一个路径,或者将 WorkingDirectory 键添加到您的 .plist 以更改默认值。

关于macos - launchd:WatchPaths 不会触发简单的 "hello world"脚本 (OS X 10.8),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14108471/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com