I have two commands with different counts on the same directory.
directory /u1/oracle
I am assuming the first command includes hiden files and the second does not. Am I correct in my assumption or not.
How would I know what is the true count on the directory?
directory /u1/oracle
Code:
find . -name '*' | wc -l
69355
Code:
find . -type f -print | wc -l
64008
I am assuming the first command includes hiden files and the second does not. Am I correct in my assumption or not.
How would I know what is the true count on the directory?