There is a directory under /tmp with the name test_copy.
$ ls /tmp/test_copy/
a.sh b.sh
$ cd /tmp
/tmp$ find . -name test_copy
./test_copy
But if I run the following find command it does not return anything.
~/scripts$ find /tmp -name test_copy
~/scripts$
Why can't find find the directory in the last case?
ls -ld /tmp?