Prev: Are Indesign files interchangeable between Macs and PCs without any hassle?
Next: Download Youtube
From: David Lesher on 24 Mar 2010 13:56 I'm searching for a duplicate file detector that works. DFS & Singular both seem to work on small directories but on larger ones, fail. There's payware "Tidy-up" but as I read it; it does not use hashing. Suggestions? -- A host is a host from coast to coast.................wb8foz(a)nrk.com & no one will talk to a host that's close........[v].(301) 56-LINUX Unless the host (that isn't close).........................pob 1433 is busy, hung or dead....................................20915-1433
From: DvC on 24 Mar 2010 17:25 In article <hodjo2$5jk$1(a)reader1.panix.com>, David Lesher <wb8foz(a)panix.com> wrote: > I'm searching for a duplicate file detector that works. > > DFS & Singular both seem to work on small directories but on > larger ones, fail. > > There's payware "Tidy-up" but as I read it; it does not use hashing. > > Suggestions? DupScan <http://www5.wind.ne.jp/miko/> is free and does the job perfectly. -- DC
From: AES on 24 Mar 2010 21:41 In article <nospam-A3DBFE.17252824032010(a)news.telus.net>, DvC <nospam(a)globetrotter.net> wrote: > > I'm searching for a duplicate file detector that works. > > Suggestions? > > DupScan <http://www5.wind.ne.jp/miko/> is free and does the job > perfectly. Anyone else used this? Looks good and i could use it -- but always good to have second opinions on freeware that messes with you system.
From: Nick Naym on 24 Mar 2010 21:58 In article siegman-CBAEF1.18413324032010(a)sciid-srv02.med.tufts.edu, AES at siegman(a)stanford.edu wrote on 3/24/10 9:41 PM: > In article <nospam-A3DBFE.17252824032010(a)news.telus.net>, > DvC <nospam(a)globetrotter.net> wrote: > >>> I'm searching for a duplicate file detector that works. >>> Suggestions? >> >> DupScan <http://www5.wind.ne.jp/miko/> is free and does the job >> perfectly. > > Anyone else used this? Looks good and i could use it -- but always > good to have second opinions on freeware that messes with you > system. It's a PIA to use...but I think probably no more so than others, and perhaps a bit easier to figure out. It does no harm that I'm aware of. -- iMac (27", 3.06 GHz Intel Core 2 Duo, 4 GB RAM, 1 TB HDD) � OS X (10.6.2)
From: Doc O'Leary on 25 Mar 2010 13:04 In article <hodjo2$5jk$1(a)reader1.panix.com>, David Lesher <wb8foz(a)panix.com> wrote: > I'm searching for a duplicate file detector that works. > > DFS & Singular both seem to work on small directories but on > larger ones, fail. > > There's payware "Tidy-up" but as I read it; it does not use hashing. > > Suggestions? Comfy in Terminal? If so, here's something I used to use: #! /bin/sh sum_file=".identity.cksums" echo Identifying files . . . if [ $# -eq 0 ] ; then find . -type d -follow -print else for i ; do find "$i" -type d -follow -print done fi | while read dir; do cksum "$dir"/* 2> /dev/null done > $sum_file echo Checking for duplicates . . . cat $sum_file | cut -f 1-2 -d ' ' | sort -n | uniq -d | while read dupsum; do echo grep "$dupsum" $sum_file done -- My personal UDP list: 127.0.0.1, localhost, googlegroups.com, ono.com, and probably your server, too.
|
Next
|
Last
Pages: 1 2 Prev: Are Indesign files interchangeable between Macs and PCs without any hassle? Next: Download Youtube |