cmd - Compare TXT files and get missing words -
i have 2 txt files, first result of json file , second must contain content of json + content of other txt file. database1.txt word1 word2 word3 word8 database2.txt (from json) word1 word5 word7 word8 database3.txt (database1+database2) word1 word2 word3 word5 word7 word8 here code: @echo off setlocal enabledelayedexpansion if exist "%localappdata%\xxx\xxx\database.json". ( /f "delims=" %%a in ('type "%localappdata%\xxx\xxx\database.json"') %%b in (%%a) ( echo %%b >>json.tmp ) /f "tokens=* skip=1 delims= " %%a in (json.tmp) ( call :sub1 %%a >> json_cl.txt echo.!s! ) set row= /f "delims=" %%j in (json_cl.txt) ( if defined row echo.!row!>>password_jd.txt set row=%%j ) findstr /v /g:"password_list.txt" "password_jd.txt">1.out type password_list.txt 1.out>updated_pw.txt del json_cl.txt del json.tmp del password_jd.txt del 1.out goto :eof :sub1 set s...