On Tue, 2006-01-17 at 16:41 -0500, Josef Sipek wrote:
> On Tue, Jan 17, 2006 at 04:38:53PM -0500, Shaya Potter wrote:
> > On Tue, 2006-01-17 at 16:37 -0500, Josef Sipek wrote:
> > > On Tue, Jan 17, 2006 at 03:56:05PM -0500, Shaya Potter wrote:
> > > > is it possible to not just have cvs snapshots tarballs, but to also have
> > > > patches from tarball to tarball?
> > > >
> > > > I'm in the process of trying to sync my tree, and basically doing this
> > > > by hand. :)
> > >
> > > What do you use to maintain your trees?
> >
> > cause I do my own stuff on top of unionfs.
> >
> > mmap code
> >
> > sparse writing of files (instead of full copyup).
>
> No, I mean what software do you use to maintain your trees (CVS?
> Subversion? ...) or just by hand?
decided to make life easier on me and you guys. here's the script I'm
using now.
----
#!/bin/bash
f="0";
for i in *.tar.gz
do
prev=$cur
tar xzf $i
cur=`echo $i |cut -f 1 -d '.'`
patch=`echo $cur |cut -f 2,3 -d '-'`
if [ $f = "0" ]
then
f="1";
continue
fi
echo "diff -rNu $prev $cur > ${patch}.patch"
diff -rNu $prev $cur > ${patch}.patch
done
----
_______________________________________________
unionfs mailing list
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs