Delete Compare.cmd

This commit is contained in:
Kees1958 2021-05-23 17:19:35 +02:00 committed by GitHub
parent 953338a54e
commit 3427e2b371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 21 deletions

View File

@ -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