查找并添加/替换kMDItemKeywords属性OS X.


0

我正在尝试查找标记有特定标记的文件(图像),并添加(可能替换)新文件。

现在我想出来:

mdfind -0 -onlyin '/Volumes/HDD_MED_201304/Photos' 'sampleTag' | xargs -0 -I {} sips -X newTag"

但它不起作用。我从终端收到“没有这样的文件或目录”。

我究竟做错了什么?

谢谢,亚历克斯

Answers:


0

sips -X用于从ICC配置文件中提取标签,例如sips -X mmod /tmp/a /Library/ColorSync/Profiles/Displays/iMac-2838C3DD-A394-78C1-4A5E-57649BBC5643.icc

请尝试使用exiftool

exiftool -keywords+='some keyword' -keywords+='another keyword' file.jpg

有关更多示例,请参见http://www.sno.phy.queensu.ca/~phil/exiftool/faq.html

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.