How to delete .DS_Store files on macOS

This article shows how to delete .DS_Store files from the current directory and all its subdirectories on macOS. 1. Delete “.DS_Store” files The below command will delete .DS_Store files from the current directory and all its subdirectories without asking for confirmation. Terminal find . -name ".DS_Store" -type f -delete The command breakdown: find . – …

Read more

How to find a file in linux

In *nix, you can use the find command to find a file easily. $find {directory-name} -name {filename} 1. Find a file in the root directory If you have no idea where the file is located, you can search the entire system via the “/” root directory. Below example shows you how to find a file, …

Read more