Skip to content

Instantly share code, notes, and snippets.

View MrP's full-sized avatar

Victor Rodriguez Gil MrP

  • Otter Projects Ltd.
  • London
View GitHub Profile
@MrP
MrP / dupes.ps1
Created February 14, 2016 00:05
PowerShell find duplicates
ls Dropbox, Documents\Mega -recurse |
group -property length |
where { $_.count -gt 1 } |
% {
$_.group |
select |
get-filehash |
group -property hash |
where { $_.count -gt 1 } |
% { $_.group | select }