This looks like a homework assignment.
"find" will .. ummm... find files.
find / -name findFile.sh
The "/" is where the search starts from, so if you know the file is somewhere under /home, you could do something like...
find /home -name findFile.sh
the -name flag tells it to match the name exactly.
If you use -iname instead, it becomes case insensitive.
There are other flags such as how many directories deep you want to search,
Do you want to list symbolic links or not?
There are flags for newer files, so that if it finds the same file name more than once
it will show you which is the newest.
You can find files, symbolic links, directories, even sockets.
Most of this can be found out by reading the man pages.
man find
.