How can I recursively find all files in current and subfolders based on wildcard matching?
Linux – How to recursively find all files in current and subfolders based on wildcard matching
linuxshell
Related Question
- Bash – How to count all the lines of code in a directory recursively
- Linux – How to grep recursively
- Linux – How to change permissions for a folder and its subfolders/files in one step
- Linux – How to exclude a directory in find . command
- Linux – Given two directory trees, how can I find out which files differ by content?
- Node.js – How to update NodeJS and NPM to the next versions
- Linux – Recursively counting files in a Linux directory
- Linux – How to find all files containing specific text on Linux
Best Solution
Use find for that:
find
needs a starting point, and the.
(dot) points to the current directory.