Find Command is used to search or find files and Directories on your Linux System. It supports searching by file, folder, creation date, modification date, owner, name, and permissions.
Let’s do some practicals
We do have a Directory name filedemo:

- Search by File
$ find -name '*.txt'

2. Search for empty files and directories.
$ find -empty

3. Search by Specific Name
$ find -name hello.txt

4. Search by Permission Level
$ find -perm 776

