Delete .DS_Store recursively from all directories and sub-directories
📣 Sponsor
On a Mac, it is common to run into an issue when committing files to a git repo, where a file named .DS_Store
appears in every folder. This file, although it contains useful information for the directory, is usually not something you want to commit to your repo. Similar problems exist on linux as well.
Sometimes, despite adding this to your .gitignore
file, it still somehow ends up in your git repo. To remove all instances of a particular file, such as .DS_Store, on your computer, you can run the following command:
find . -name ".DS_Store" -delete
If you want to delete any other file, just replace ".DS_Store" with that file's name. The below, for example, will delete all files called "main.js".
find . -name "main.js" -delete
This will work on Linux and Mac.
More Tips and Tricks for Linux
- How the alias Command works on Linux
- Delete .DS_Store recursively from all directories and sub-directories
- How to Kill a Process Running on a Port
- How the touch Command works on Linux
- How the mv Command works on Linux
- Speed up your Website by Converting your Images to WebP from Terminal
- How the cd command works in Linux
- How the cat Command works on Linux
- How to Remove Empty and Non Empty Directories in Linux
- How to Rename Files in Linux and MacOS Terminal