Re: diffing and uniqing directories

2008-05-11 Thread castironpi
On May 11, 2:44 pm, Dan Stromberg <[EMAIL PROTECTED]> wrote: > On Sat, 26 Apr 2008 23:44:17 +0530, Rustom Mody wrote: > > Over years Ive collected tgz's of my directories. I would like to diff > > and uniq them > > > Now I guess it would be quite simple to write a script that does a walk > > or fin

Re: diffing and uniqing directories

2008-05-11 Thread Dan Stromberg
On Sat, 26 Apr 2008 23:44:17 +0530, Rustom Mody wrote: > Over years Ive collected tgz's of my directories. I would like to diff > and uniq them > > Now I guess it would be quite simple to write a script that does a walk > or find through a pair of directory trees, makes a SHA1 of each file and >

Re: diffing and uniqing directories

2008-04-27 Thread rustom
On Apr 27, 11:29 pm, "telus news" <[EMAIL PROTECTED]> wrote: > Just so happens that I am partially finished a gui file backup app. I have > many backup CDs and I wanted to consolidate them. You know, all image files > in one dir, all install files in another dir, etc. My app scans the input > dir t

Re: diffing and uniqing directories

2008-04-27 Thread telus news
Just so happens that I am partially finished a gui file backup app. I have many backup CDs and I wanted to consolidate them. You know, all image files in one dir, all install files in another dir, etc. My app scans the input dir tree and displays all file extensions that it finds. You can then r

Re: diffing and uniqing directories

2008-04-27 Thread castironpi
On Apr 27, 2:37 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: > On Sat, 26 Apr 2008 20:35:29 -0700, rustom wrote: > > On Apr 27, 12:31 am, [EMAIL PROTECTED] wrote: > >> On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > >> […] > > > If this is an answer to my question I dont u

Re: diffing and uniqing directories

2008-04-27 Thread Marc 'BlackJack' Rintsch
On Sat, 26 Apr 2008 20:35:29 -0700, rustom wrote: > On Apr 27, 12:31 am, [EMAIL PROTECTED] wrote: >> On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: >> […] > > If this is an answer to my question I dont understand it! castironpi is either a bot or trolling. Just ignore its posts. C

Re: diffing and uniqing directories

2008-04-26 Thread castironpi
On Apr 26, 10:35 pm, rustom <[EMAIL PROTECTED]> wrote: > On Apr 27, 12:31 am, [EMAIL PROTECTED] wrote: > > > > > > > On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > > > > Over years Ive collected tgz's of my directories. I would like to diff > > > and uniq them > > > > Now I guess it

Re: diffing and uniqing directories

2008-04-26 Thread rustom
On Apr 27, 12:31 am, [EMAIL PROTECTED] wrote: > On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > > > > > Over years Ive collected tgz's of my directories. I would like to diff > > and uniq them > > > Now I guess it would be quite simple to write a script that does a > > walk or find t

Re: diffing and uniqing directories

2008-04-26 Thread castironpi
On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > Over years Ive collected tgz's of my directories. I would like to diff > and uniq them > > Now I guess it would be quite simple to write a script that does a > walk or find through a pair of directory trees, makes a SHA1 of each > file

diffing and uniqing directories

2008-04-26 Thread Rustom Mody
Over years Ive collected tgz's of my directories. I would like to diff and uniq them Now I guess it would be quite simple to write a script that does a walk or find through a pair of directory trees, makes a SHA1 of each file and then sorts out the files whose SHA1s are the same/different. What is