From 471420a762f2d0f5153be1780ce55a6df0dafacc Mon Sep 17 00:00:00 2001 From: rlogwood Date: Fri, 7 Jun 2024 16:53:13 -0400 Subject: [PATCH] remove 10 dup limit used in testing --- windows/frd.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/windows/frd.ps1 b/windows/frd.ps1 index 786849e..c2b6f54 100755 --- a/windows/frd.ps1 +++ b/windows/frd.ps1 @@ -326,7 +326,7 @@ function ProcessDuplicates { CheckUsage -$files = Get-AllFilesByHash($check_dir) | Select-Object -First 10 +$files = Get-AllFilesByHash($check_dir) $dups = Get-Duplicates $files if ($show_dups) { @@ -337,4 +337,3 @@ if ($delete) { ProcessDuplicates $dups } -