如何在bat文件中运行这些sh命令集?

时间:2018-01-25 08:29:02

标签: batch-file sh

我需要运行这个sh命令。首先,命令将是这一个

keytool -importcert -file myfile.cer -keystore keystore.jks -alias "Aliasname"

Enter keystore password:

Re-enter new password:

Trust this certificate? [no]:

我需要自动运行此命令,并在第一个命令成功时运行。它要求输入密码。我需要自动输入。最后是的。 如何使用.bat文件?

1 个答案:

答案 0 :(得分:1)

如果keytool符合标准输入,您可以使用:

(
echo your_password
echo your_password
echo y
)|keytool -importcert -file myfile.cer -keystore keystore.jks -alias "Aliasname"