Find files by name on Mac Terminal

Use following command to find files by name on Mac OS Terminal:
find -name

Examples:

Find files named with 'test' on my mac:
find / -name test


Find files named with 'test' on current folder/directory:
find . -name test

No comments:

Post a Comment