Find file on linux

# find / -name ‘squid’ -type d
# find / -name squid
# find / -iname squid.conf

Note:
the fist parameter “/” is where to look in this case “/” the entire system.
-name could be -iname to ignore case also -type is not mandatory

For more options
# man find

Leave a Reply

Your email address will not be published. Required fields are marked *