Gerrit-Jan Linker
|
Recursive file search in unix/linux To recursively search for files in unix or linux the find command can be used. As an example the following command lists all the files from the current directory downwards that match the pattern *output* find . -name *output* -print Other examples: Find all files/directories whose name only contain numbers: find . -name "[0123456789]*" -print
|