I have to display all files and folders details under a parent directory. I am using the command is 'find'. For example,
find /usr/local
/usr/local/bin
It's display only the file name. I have to display file name with details about files like below. Means I have to add below information in the above result set.
-rw-rw-- 1 hduser hduser 213 jan 22 11:51
How to do it?
Thanks in advance.