Re: recursively find duplicate filenames

2011-01-06 Thread Jari Fredriksson
On 5.1.2011 13:15, S Mathias wrote: find duplicate filenames in a folder find | perl -ne 's!([^/]+)$!lc $1!e; print if 1 == $seen{$_}++' find duplicate filenames in a folder recursively ? how? $ sudo aptitude install fdupes -- Q: What's the difference between the 1950's and the

recursively find duplicate filenames

2011-01-05 Thread S Mathias
find duplicate filenames in a folder find | perl -ne 's!([^/]+)$!lc $1!e; print if 1 == $seen{$_}++' find duplicate filenames in a folder recursively ? how? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: recursively find duplicate filenames

2011-01-05 Thread Karl Vogel
On Wed, 5 Jan 2011 03:15:01 -0800 (PST), S Mathias smathias1...@yahoo.com said: S find duplicate filenames in a folder recursively? how? It's a (pretty ugly) one-liner if you have something to reverse strings in a file. Put this in (say) /usr/local/bin/rev: #!/usr/bin/perl -n