The find command in linux gives you the possibility to search for files and folders. With these 5 Tips you are able to limit your search results very precisely. Tip 1: ignore upper- and lowercase find -iname usefulvid Tip 2: part of the string find -iname "*ful*" Tip 3: only search folders find -iname -type d "*ful*" Tip 4: empty files find -iname usefulvid -empty Tip 5: search for specific date find * -newermt 2019-08-19 ! -newermt 2019-08-20 2 &1| grep -v "denied" add angle bracket after the 2 like in the video