在Mac上查找带有特殊字符的图像


1

我有大约10k图像,我需要找到具有特殊字符和重音的图像(如á,é,í,...)。我们的想法是保留那些带有特殊字符的图像并删除所有其他图像。

怎么可以在Mac终端上完成?

先感谢您, 加布里埃尔

Answers:


0

如果仅允许A-Z,a-z,0-9,空格和连字符作为示例:

> find /path/to/your/images | egrep [^A-Za-z0-9./\ -]
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.