Answers:
您可以添加find
以下表达式:
-printf '%Tc %p\n'
看到像
Sun Aug 14 06:29:38 2011 ./.nx/config/host.nxs
或-printf '%TD %TT %p\n'
为
08/14/11 06:29:38.2184481010 ./.nx/config/host.nxs
或者-printf '%T+ %p\n'
如果你有GNU find
,看
2011-08-14+06:29:38.2184481010 ./.nx/config/host.nxs
最后一个(如果可用)对于时间排序目的也很有用。
见手册页find
,在这里谈论printf
。
使用以下命令获取带有时间戳的文件列表。
$ find . -type f | xargs ls -l --time-style="+%d-%m-%Y"
-printf
在OS-X中不起作用。是否有等效于此命令的OS-X版本?