标签: linux bash unix backup
在我的办公室,我每天和每周备份。我很想知道我是否可以查看特定日期的备份数据列表。
示例:如果我在2013年8月1日进行备份,即周四,我想在2013年8月1日查看备份数据列表。
答案 0 :(得分:0)
find . -type f -newermt 2013-08-02 ! -newermt 2013-08-02
有关详细信息,请参阅here
答案 1 :(得分:0)
这应该有用。
ls -l *.bck | grep "Aug 1"