how to Linux / Unix: Bash Find Matching All Dot Files
In Linux or Unix, you can use the find command with the -name option to search for files that match a specific pattern. To find all files that begin with a dot, you can use the following command: find /path/to/search -name “.*” This command will search the directory specified by /path/to/search (and all its subdirectories) … Read more