使用macOS中的命令行向文件添加(Spotlight)注释

问题描述 投票:2回答:1

我应该使用哪个命令将注释(从文件或剪贴板)添加到macOS中文件(任何文件)的“注释”部分?

这些注释用于Spotlight索引,显然可以从Finder手动添加(⌘+ i),但出于我的目的,我希望能够从命令行执行此操作(在Bash脚本中使用)。

bash macos terminal spotlight
1个回答
1
投票

found在macOS 10.13中适用于我的一个很好的片段:

osascript -e 'on run {f, c}' -e 'tell app "Finder" to set comment of (POSIX file f as alias) to c' -e end "/path/to/your.file" "hello world"
© www.soinside.com 2019 - 2024. All rights reserved.