I'm in directory "home" and I run this command
find . -iname *.mov
and it produces
./root/movies/Corey/holtorf/Intro.mov
Now, I "cd .." and run the same command
find . -iname *.mov
This time "Intro.mov" is not in the result. What are the reasoning behind this? And what is the command to search recursively for every file ending with ".mov" in the current directory? Thanks.