up vote 10 down vote favorite
5
share [g+] share [fb]

I'd rather not do this in PHP so I'm hoping a someone decent at shell scripting can help.

I need a script that runs through directory recursively and finds all files with last modified date is greater than some date. Then, it will tar and zip the file(s) keeping the path information.

Thanks in advance!

link|improve this question
Good decision to not do it in PHP. – Lucas McCoy May 11 '09 at 14:18
You could use any of the decent shell scripting languages, eg python, ruby, perl without resorting to php. – garrow May 11 '09 at 14:25
@garrow This would actually be fairly simple in PHP using a RecursiveDirctoryIterator encaspulated in a FilterIterator. – Artefacto Nov 12 '10 at 1:35
feedback

6 Answers

up vote 7 down vote accepted

as simple as:

find . -mtime -1 | xargs tar --no-recursion -czf myfile.tgz

where find . -mtime -1 will select all the files in (recursively) current directory modified day before. you can use fractions, for example:

find . -mtime -1.5 | xargs tar --no-recursion -czf myfile.tgz
link|improve this answer
1  
See user104848's answer below for how to deal with spaces in your file names – Brian Henk Jan 19 '11 at 16:28
feedback

If you have GNU find, then there are a legion of relevant options. The only snag is that the interface to them is less than stellar:

  • -mmin n (modification time in minutes)
  • -mtime n (modification time in days)
  • -newer file (modification time newer than modification time of file)
  • -daystart (adjust start time from current time to start of day)
  • Plus alternatives for access time and 'change' or 'create' time.

The hard part is determining the number of minutes since a time.

One option worth considering: use touch to create a file with the required modification time stamp; then use find with -newer.

touch -t 200901031231.43 /tmp/wotsit
find . -newer /tmp/wotsit -print
rm -f /tmp/wotsit

This looks for files newer than 2009-01-03T12:31:43. Clearly, in a script, /tmp/wotsit would be a name with the PID or other value to make it unique; and there'd be a trap to ensure it gets removed even if the user interrupts, and so on and so forth.

link|improve this answer
Instead, you can use -newermt '2009-01-03T12:31:43' to avoid the need to create a file just for reference. – Michael Mior Jan 17 at 17:43
@MichaelMior: Interesting - the 'find' on MacOS X 10.7.2 supports -newermt (documented under -newerXY since there are multiple options; X = m, Y = t in this case). The GNU find on the (almost archaic) Linux systems I use does not support the options, so it is a relatively recent arrival. Thanks for the heads up. – Jonathan Leffler Jan 17 at 18:02
This option is present in GNU find 4.4.2 which I'm using on my system. – Michael Mior Jan 17 at 18:19
It's not present in GNU find 4.2.27 which I'm using on one of my systems. So, that gives a window of GNU versions. MacOS X find does not support the --version option (or -V). – Jonathan Leffler Jan 17 at 19:15
feedback

This will work for some number of files. You want to include "-print0" and "xargs -0" in case any of the paths have spaces in them. This example looks for files modified in the last 7 days. To find those modified before the last 7 days, use "+7".

find . -mtime -7 -print0 | xargs -0 tar -cjf /foo/archive.tar.bz2

As this page warns, xargs can cause the tar command to be executed multiple times if there are a lot of arguments, and the "-c" flag could cause problems. In that case, you would want this:

find . -mtime -7 -print0 | xargs -0 tar -rf /foo/archive.tar

You can't update a zipped tar archive with tar, so you would have to bzip2 or gzip it in a second step.

link|improve this answer
Thank you, I had this exact problem – Brian Henk Jan 19 '11 at 16:28
1  
Regarding the second point, you can use a gzip-enabled tar command, like Gnu tar's -z option, to update zipped archives, too. – Suncat2000 Sep 7 '11 at 1:05
feedback

This should show all files modified within the last 7 days.

find . -type f -mtime -7 -print

Pipe that into tar/zip, and you should be good.

link|improve this answer
feedback

You can get a list of files last modified later than x days ago with:

find . -mtime -x

Then you just have to tar and zip files in the resulting list, e.g.:

tar czvf mytarfile.tgz `find . -mtime -30`

for all files modified during last month.

link|improve this answer
1  
"-mtime x" matches files modified exactly "x" days ago, use "-mtime -x" to match files modified less than "x" days ago. – Lance Richardson May 11 '09 at 14:23
Thanks! Edited. – mouviciel May 11 '09 at 14:34
feedback

well under linux try reading man page of the find command

man find

something like this should

 find . -type f -mtime -7 -print -exec cat {} \; | tar cf - | gzip -9

and you have it

link|improve this answer
feedback

Your Answer

 
or
required, but never shown