mac系统删除.DS_Store文件
Posted mobro
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac系统删除.DS_Store文件相关的知识,希望对你有一定的参考价值。
查找某目录下某类文件
find . -name ".DS_Store" -type f -print
# find: 主命令
# . : 当前目录下(可变)
# -name: 通过名查找
# ".DS_Store": 后缀
# -type f: 一般正规文件
# -print: 查询结果打印
eg: 查找当前目录下所有的.html
文件, 并打印就应该使用
find . -name ".html" -type f -print
find . -name ".DS_Store" -type f -print -exec command {} ;
# -exec: 命令扩展,查询结束后要执行 command 命令
# {}: 查询结果放到 {} 中
# ;: 扩展命令结束符,表示 到 ; 结束
eg: 找到.html
后,删除所有的查询结果,应使用:
find . -name ".DS_Store" -type f -print -exec rm -rf {} ;
不让 mac os 生成 .DS_Store 文件
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
以上是关于mac系统删除.DS_Store文件的主要内容,如果未能解决你的问题,请参考以下文章
如何删除mac中的.DS_Store和git中的.DS_Store