Txt文件密码检查批处理

时间:2011-10-16 19:24:34

标签: windows batch-file cmd

我希望我的脚本比较用户输入和txt文件中的文本(例如test.txt) 我知道我可以使用type test.txt,但我不知道如何将其与用户输入进行比较... 你能帮助我吗?谢谢... 这就是我所拥有的:

set choice=
set /p choice=Zvol si heslo slozky:

2 个答案:

答案 0 :(得分:3)

您可以做的是将答案写入(临时)文件并比较文件。例如:

...
echo %choice% > tempfile.txt
fc tempfile.txt test.txt > NUL
if errorlevel 1 echo answer is different as text.txt

答案 1 :(得分:0)

将要求输入密码猜测,如果找到则会输出results.txt

@echo off
echo Password comparer
set choice=
set /p choice=Enter your password guess:

TYPE test.txt | findstr /m %choice% > results.txt