如何使用'find'命令显示修改的日期时间? [英] How to display modified date time with 'find' command?

查看:807
本文介绍了如何使用'find'命令显示修改的日期时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 find 命令,我可以显示具有多个级别的目录名称。以下命令显示深度为2的 / var 路径下的所有目录:

  find / var -maxdepth 2 -type d; 

结果显示:

  / var 
/ var / log
/ var / log / sssd
/ var / log / samba
/ var / log / audit
/ var / log / ConsoleKit
/ var / log / gdm
/ var / log / sa

使用 stat 命令,我可以找到修改的日期时间:

  stat / var / log / samba | grep'Modify:'

结果是:

 修改:2014-01-02 11:21:27.762346214 -0800 

有没有办法把这两个命令结合起来,这样目录就会被修改日期时间?

你可以在 find 中使用 -exec 开关,定义 stat 使用 -c 开关,如下所示:
$ b $ p $ find $ / $ -maxdepth 2 -type d -exec stat -c%n%y{} \;



通过修改时间在输出的同一行。

With a find command, I can display directories names with multiple levels. The following command display all directories under /var path with a depth of 2:

find /var -maxdepth 2 -type d;

The result shows:

/var
/var/log
/var/log/sssd
/var/log/samba
/var/log/audit
/var/log/ConsoleKit
/var/log/gdm
/var/log/sa

With a stat command, I can find the modified date time:

stat /var/log/samba | grep 'Modify:'

The result is:

Modify: 2014-01-02 11:21:27.762346214 -0800 

Is there a way to combine the two commands so that directories will be listed with modified date time?

解决方案

You could use the -exec switch for find and define the output format of stat using the -c switch as follows:

find /var -maxdepth 2 -type d -exec stat -c "%n %y" {} \;

This should give the filename followed by its modification time on the same line of the output.

这篇关于如何使用'find'命令显示修改的日期时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆