Finding files by type

suggest change

To find files, use the -type f flag

$ find . -type f

To find directories, use the -type d flag

$ find . -type d

To find block devices, use the -type b flag

$ find /dev -type b

To find symlinks, use the -type l flag

$ find . -type l

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents