0

In my office i am taking daily and weekly backups. I am just curious to know if i could view list of backup data on a particular day.

Example: If i have taken backup on 1st august 2013 i.e, on Thursday, i want to view list of backup data on 1st august 2013.

m1k
  • 37
  • 1
  • 6
  • How about an ls -l and then grep on the time? – Jiminion Aug 02 '13 at 15:05
  • 1
    This greatly depends on *how* you are taking backups... by just copying files? by using a backup utility? by using `rsync` or something similar, or `zip`/`rar`/`tar`? – twalberg Aug 02 '13 at 16:13

2 Answers2

0
find . -type f -newermt 2013-08-02 ! -newermt 2013-08-02

See here for more info

Community
  • 1
  • 1
Srdjan Grubor
  • 2,605
  • 15
  • 17
0

This should work.

ls -l *.bck | grep "Aug  1"
Jakub M.
  • 32,471
  • 48
  • 110
  • 179
Jiminion
  • 5,080
  • 1
  • 31
  • 54