First page Back Continue Last page Image

The find command options

find / -type f -name "constitution.txt"

f – regular file

d – directory

l – symbolic link

c – character devices

b – block devices

name – case sensitive

iname – case insensitive

The path to start looking, the deeper the path the better this works. “/” is the worst case scenario.