find can give me a list of fully-qualified names, but doesn't provide size info
ls can give me a list of file sizes, but the names are not FQN
how can i get a list that has both size and fully-qualified names of all files including those in subdirectories?
E.g. something like this (though I don't need any info except name and size; permissions, owner, etc are not essential & can be cut later):
Code:
-r--r--r-- 1 root root 21K May 31 01:35 ./current/apache/httpd.conf
-rw-r--r-- 1 root root 1.5K May 31 01:35 ./current/apache/server.crt
-rw-r--r-- 1 root root 887 May 31 01:35 ./current/apache/server.key
-rw-r--r-- 1 root root 237 May 31 01:35 ./current/apache/httpd.virtualhost.conf
-rw-r--r-- 1 root root 78K May 31 01:35 ./current/etc/mibs/RFC1213-MIB.txt
-rw-r--r-- 1 root root 61K May 31 01:35 ./current/etc/mibs/APPACCELERATION-STATUS-MIB.txt
-rw-r--r-- 1 root root 39K May 31 01:35 ./current/etc/mibs/SNMP-USER-BASED-SM-MIB.txt
-rw-r--r-- 1 root root 38K May 31 01:35 ./current/etc/mibs/SNMPv2-TC.txt
thanks!