Re: Basic Diff question

2006-09-20 Thread MC
I made a few minor chnages and now the diff bash script should put all the new files into the patch as well, while naming the old files with the '.orig' suffix virtual7:# cat diffOMatic.sh #Takes two arguments which are old/ and new/ respectively diffOMatic() { ( cd $2/; find . -type f ) | while

Re: Basic Diff question

2006-09-18 Thread MC
Thanks for the quick replies. They got me to thinking and I whipped up this little bach script that seems equal to the task: virtual7:/usr/ports/math/ # cat diffOMatic.sh #Takes two arguments which are old/ and new/ respectively diffOMatic() { ( cd $1/; find . -type f ) | while read f; do #e

Re: Basic Diff question

2006-09-18 Thread Fernan Aguero
+[ MC <[EMAIL PROTECTED]> (18.Sep.2006 19:47): | | Hello | | I am getting going on my second port. However in this new one are many | little patches | to most of the source code. I always see '.orig' suffixes appended to in | Freebsd diff files, like | | --- Src/DasherCore/FileLogger.cpp.or

Re: Basic Diff question

2006-09-18 Thread Jeremy Chadwick
On Mon, Sep 18, 2006 at 03:26:05PM -0700, MC wrote: > Hello > > I am getting going on my second port. However in this new one are many > little patches > to most of the source code. I always see '.orig' suffixes appended to in > Freebsd diff files, like > > --- Src/DasherCore/FileLogger.cpp.ori

Re: Basic Diff question

2006-09-18 Thread Brooks Davis
On Mon, Sep 18, 2006 at 03:26:05PM -0700, MC wrote: > Hello > > I am getting going on my second port. However in this new one are many > little patches > to most of the source code. I always see '.orig' suffixes appended to in > Freebsd diff files, like > > --- Src/DasherCore/FileLogger.cpp.ori

Basic Diff question

2006-09-18 Thread MC
Hello I am getting going on my second port. However in this new one are many little patches to most of the source code. I always see '.orig' suffixes appended to in Freebsd diff files, like --- Src/DasherCore/FileLogger.cpp.orig Tue Jan 17 01:41:44 2006 +++ Src/DasherCore/FileLogger.cpp Tue Ja