Linux user has been here.
How can you tell?
*sniff* Still smells like smug.
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.
Linux user has been here.
How can you tell?
*sniff* Still smells like smug.
DS DS DS D-not gonna work here anymore, anyway.
fd -HI '^\.DS_Store$' $HOME -tf -X rm -v
find . -name “.DS_Store” -type d -exec rm -rf {} + -print
That doesn't work, DS_Store
are files not directories ( you need to use -type f
).
An equivalent find
command would be:
find "$HOME" -type f -name '.DS_Store' -delete -print
find
takes a while; fd
is way, way faster, but find
is preinstalled, so there is that.