我试图将Linux的bash脚本转换为在Windows批处理中运行。在几个命令中,还有一个OpenSSL命令,它从https服务器读取证书并将其存储在变量中。 bash命令是:
openssl s_client -showcerts -connect $SERVER_IP:443/login </dev/null 2>/dev/null|openssl x509 -outform PEM > mycertfile.pem
我已经从here在我的Windows机器上安装了OpenSSL。我更喜欢&#34; Win64 OpenSSL v1.1.0e Light&#34; OpenSSL的版本。
此命令如何转移到Windows逻辑?有什么想法吗?