Linux / Unix – Find And List All Hidden Files Recursively
To find and list all hidden files in a directory recursively on a Linux or Unix-like system, you can use the following command: $ find <directory> -name “.*” -type f For example, to find all hidden files in the current directory and all of its subdirectories: $ find . -name “.*” -type f The find … Read more