Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的办公室里,我每天和每周都进行备份。我只是想知道我是否可以查看特定日期的备份数据列表。
示例:如果我在 2013 年 8 月 1 日(即星期四)进行了备份,我想查看 2013 年 8 月 1 日的备份数据列表。
find . -type f -newermt 2013-08-02 ! -newermt 2013-08-02
请参阅此处了解更多信息
这应该有效。
ls -l *.bck | grep "Aug 1"