如何使用cmd从文本文件插入密码?
How can i insert the password from a text file using cmd?
我正在尝试使用 cmd 打开受密码保护的 Rar 文件,当它要求输入密码时,我希望它能够
自动插入存储在文本文件中的密码。
我该怎么做?
我想 WinRAR 有用于这些东西的 CLI:
unrar x -p your_password your_rar_file.rar
您可以从文件中读取而不是 your_password
:
unrar x -p 'cat /path/to/passwdfile' your_rar_file.rar
我正在尝试使用 cmd 打开受密码保护的 Rar 文件,当它要求输入密码时,我希望它能够 自动插入存储在文本文件中的密码。 我该怎么做?
我想 WinRAR 有用于这些东西的 CLI:
unrar x -p your_password your_rar_file.rar
您可以从文件中读取而不是 your_password
:
unrar x -p 'cat /path/to/passwdfile' your_rar_file.rar