this post was submitted on 28 Jan 2025
1769 points (99.7% liked)
Programmer Humor
27154 readers
1616 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUEHelps a bit.
you can also delete them recursively with
find . -name '*.DS_Store' -type f -print -delete(adapted from this script)
Why is there a
*in front ofDS_Store?Seems like fastly made a small mistake
find . -name '.DS_Store' -type f -print -deletewould just match the exact file and is faster.Don't forget: