本文介绍了在Mac上从命令行中删除当前文件夹中的.DS_STORE文件和所有子文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我明白我可以使用 find。 -name.DS_STORE
到。但是如何从命令行同时删除它们?我发现很容易切换到所有文件夹,并逐个删除它。
I understand I can use find . -name ".DS_STORE"
to find all the .DS_STORE files in the current folder and all subfolders. But how could I delete them from command line simultaneously? I found it's really annoying to switch back and forth to all folders and delete it one by one.
感谢任何建议。
推荐答案
找到
可以做到。只需添加 -delete
:
find
can do that. Just add -delete
:
find . -name ".DS_Store" -delete
这篇关于在Mac上从命令行中删除当前文件夹中的.DS_STORE文件和所有子文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!