You can use Linux find command to recursively look for files with a specific extension.
Example:
1 2 3 |
## Recursively look for files with a specific extension ## sudo find -type f -name "*. sudo find /etc/ -type f -name "*.cfg" |
You can use Linux find command to recursively look for files with a specific extension.
Example:
1 2 3 |
## Recursively look for files with a specific extension ## sudo find -type f -name "*. sudo find /etc/ -type f -name "*.cfg" |