我需要运行这个sh命令。首先,命令将是这一个
keytool -importcert -file myfile.cer -keystore keystore.jks -alias "Aliasname"
Enter keystore password:
Re-enter new password:
Trust this certificate? [no]:
我需要自动运行此命令,并在第一个命令成功时运行。它要求输入密码。我需要自动输入。最后是的。 如何使用.bat文件?
答案 0 :(得分:1)
如果keytool符合标准输入,您可以使用:
(
echo your_password
echo your_password
echo y
)|keytool -importcert -file myfile.cer -keystore keystore.jks -alias "Aliasname"