From 3427e2b371254f75f29fd70a8166476b3199ea20 Mon Sep 17 00:00:00 2001 From: Kees1958 <30925856+Kees1958@users.noreply.github.com> Date: Sun, 23 May 2021 17:19:35 +0200 Subject: [PATCH] Delete Compare.cmd --- Compare.cmd | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Compare.cmd diff --git a/Compare.cmd b/Compare.cmd deleted file mode 100644 index 85a4c13..0000000 --- a/Compare.cmd +++ /dev/null @@ -1,21 +0,0 @@ -@echo off -:: CONFIG START - -:: replace "Top500.txt" with own file -set file1=Top500.txt - -:: replace "EU_US_most_common_trackers.txt" with own file -set file2=EU_US_most_common_trackers.txt - -:: CONFIG END - -cd /d "%~dp0" - -echo Compare "%file1%" against "%file2%" ... -for /f "tokens=*" %%i in ('type %file1%') do set domain=%%i&call :loop -echo.&echo Finish&pause&exit - -:loop -type %file2%|find "%domain%">nul -if errorlevel 1 echo %domain%>>result.txt -goto :eof \ No newline at end of file