批量编辑 MacOS 评论元数据 'MDItemFinderComment'
batch edit MacOS comment metadata 'MDItemFinderComment'
有没有办法批量编辑 MacOS 评论元数据'MDItemFinderComment'?
例如,我有多个文件带有这样的注释:
file 1 apple NEW
file 2 orange NEW
file 3 grape NEW
我想从他们
中批量删除'NEW'这个词
使用exiftool,你可以使用这个命令:
exiftool '-MDItemFinderComment<${MDItemFinderComment;s/ NEW$//}' /path/to/files/
此命令应用正则表达式从目标目录中所有文件的 MDItemFinderComment
末尾删除 (space)NEW
。添加 -r
(-recurse
) option 递归到子目录
有没有办法批量编辑 MacOS 评论元数据'MDItemFinderComment'?
例如,我有多个文件带有这样的注释:
file 1 apple NEW
file 2 orange NEW
file 3 grape NEW
我想从他们
中批量删除'NEW'这个词使用exiftool,你可以使用这个命令:
exiftool '-MDItemFinderComment<${MDItemFinderComment;s/ NEW$//}' /path/to/files/
此命令应用正则表达式从目标目录中所有文件的 MDItemFinderComment
末尾删除 (space)NEW
。添加 -r
(-recurse
) option 递归到子目录