| « flush() bug in PHP 5.4 | How to check when Linux was installed » |
How to find files recursively on Linux
10/06/12
How to find files recursively on Linux
Sometimes you need an emergency reminder about how to find all files of a certain name in a directory structure… like say: find all .htaccess files hidden in my web site. Well, here’s the magic command:
Also if you want to look for all hidden files (all files starting with a dot), you’d go like this:
Code
find . -name ".htaccess" |
Code
find . -name ".*" |
