查找具有特定“颜色”标签的所有OSX文件

时间:2013-09-11 18:48:22

标签: macos bash terminal applescript

终端中是否有任何方法列出具有特定颜色标签的所有finder文件? (即'找到所有带有红色标签的文件'

我知道这在聚光灯下是可能的。正在寻找一种方法将其纳入Applecript / terminal。

2 个答案:

答案 0 :(得分:4)

终端中的

可以直接使用mdfind。它是聚光灯的命令行客户端:)

e.g。

$ mdfind -onlyin . -literal 'kMDItemFSLabel > 0'  # labels have value 50
/cwd/labelled_file.jpg

$ mdfind -onlyin . -literal 'kMDItemFSLabel == 0'
/cwd/all.jpg
/cwd/other.jpg
/cwd/files.jpg

你当然也可以在shell脚本中调用它;)

例如,

src:https://apple.stackexchange.com/questions/31919/how-do-you-list-items-with-and-without-labels-from-the-terminal

答案 1 :(得分:1)

在Applescript中按标签获取文件的Applescript代码将是(注意使用整数来定义颜色):

set yellow to 3
tell application "Finder"
    files of folder "path:to:folder:" whose label index is yellow
end tell

代码是:

None   = 0
Red    = 2
Orange = 1
Yellow = 3
Green  = 6
Blue   = 4
Purple = 5
Gray   = 7