批量检查txt文件密码
我希望我的脚本比较用户输入和 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以做的是将答案写入(临时)文件并比较文件。例如:
What you can do is write the answer to a (temporary) file and compare the files. For example:
会要求输入密码猜测,如果找到,将输出到
results.txt
。Will ask to enter a password guess and will output to a
results.txt
if found.