批量检查txt文件密码

发布于 2024-12-10 02:00:39 字数 203 浏览 1 评论 0原文

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

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

I want my script to compare user input and text from the txt file(test.txt for example)
I know that I can use type test.txt but i dont know how to compare it with user input...
Can you help me? thank you...
This is what i have:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

娜些时光,永不杰束 2024-12-17 02:00:39

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

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

What you can do is write the answer to a (temporary) file and compare the files. For example:

...
echo %choice% > tempfile.txt
fc tempfile.txt test.txt > NUL
if errorlevel 1 echo answer is different as text.txt
晒暮凉 2024-12-17 02:00:39

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

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

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

Will ask to enter a password guess and will output to a results.txt if found.

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

TYPE test.txt | findstr /m %choice% > results.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文