If you want to display output like ls, you can use the -ls
to search:
$ find . -name resolv.conf -ls 1048592 8 -rw-r--r-- 1 root root 126 Dec 9 10:12 ./resolv.conf
If you only need a timestamp, you need to look at the -printf
option
$ find . -name resolv.conf -printf "%a\n" Mon May 21 09:15:24 2012
source share