在 osx 中,我试图检测何时将新文件添加到文件夹中,然后执行脚本来处理该新文件。看起来很简单,对吧?
我正在这样做:
fswatch -0 ~/motion-detection | xargs -0 -n1 -I {} ./detectmotion.sh
这将调用 shell 脚本 detectmotion.sh,其中包括:
echo "File added: " $1
至少现在。我只想将更改文件的文件名传递给detectmotion.sh
我花了 1 美元买了一个空白
谁能看到我在这里做错了什么?
提前致谢!