Linux/UNIX:仅显示今天的文件

时间:2020-01-09 10:40:30  来源:igfitidea点击:

如何列出仅在UNIX或Linux操作系统下使用shell命令创建的所有文件?
您可以使用以下find命令在当前目录中仅列出今日文件(即没有子目录):

find -maxdepth 1 -type f -mtime -1

输出示例:

./.gtk-bookmarks
./.ICEauthority
./.bash_history
./.xsession-errors.old
./.xsession-errors
./.recently-used.xbel
./.dmrc

在此示例中,仅查找当下目录

find -maxdepth 1 -type d -mtime -1

另一个旧但过时的ls命令黑客如下:

ls -al --time-style=+%D | grep $(date +%D)