Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 5, 2022 12:58 pm GMT

How to recursively remove .DS_Store

Lately, I've been doing a lot of development on Mac. With that comes a lot of use of the Finder app.

In order keep your repo clean, you need to remove .DS_Store files from the folders created using the Mac GUI. Doing that by hand is really boring, painful, and repetitive. Enter that awesome thing we call the command line.

Recursively Remove .DS_Store

Open up Terminal

In the command line, type:

cd to/your/directory - then press enter.

Finally, in the command line, type:

find . -name '.DS_Store' -type f -delete - then press enter.

Warning: Never use a wildcard (*) with this command, unless you know what you're doing. Bad things can happen if you don't.

This snippet will remove .DS_Store files from the selected folder, as well as all of the folders that it contains. All of them. At once.

This command can be used for other types of files, as well. Just replace '.DS_Store' with whatever file name, or type, that you want to delete.

Other uses

You can do this for other file types, as well.

For example, you could use the below to delete all JavaScript files within a containing folder.

find . -name '*.js' -type f -delete

Note that the asterisk is a wildcard, meaning the Terminal is looking for any file with an extension of .js... it can be dangerous to use wildcards...

be careful.


Original Link: https://dev.to/itssadon/how-to-recursively-remove-dsstore-4kdd

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To