Linux find command

The below videos demonstrate the common usage of the find command. For additional reading refer to the references after the two videos. Hope you enjoy the videos.

I have also listed the commands below for convenience. Make sure you make any necessary changes based on the folder structure you use.

find / -name “*.cpp”

find / root/Desktop/new -maxdepth 2 -name “*.txt”

find -type f |xargs grep -i “secret”|grep -i “config”

I would love to hear your feedback in the comments section.