Se você tiver o GNU find, poderá fazê-lo totalmente usando find
:
find / -printf '%p %C@\n'
Os especificadores de formato são:
%p File's name. %Ck File's last status change time in the format specified by k, which is the same as for %A. %Ak File's last access time in the format specified by k, which is either '@' or a directive for the C 'strftime' function. The possible values for k are listed below; some of them might not be available on all systems, due to differences in 'strftime' between systems. @ seconds since Jan. 1, 1970, 00:00 GMT, with fractional part.
Se você não quiser partes fracionárias, use s
em vez de @
como o especificador de formato de hora. (Existem alguns sistemas sem s
, mas Linux e * BSD / OSX têm s
.)
find / -printf '%p %Cs\n'