Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bash を使用して、ディレクトリ全体の .pem ファイル (CERTIFICATE および RSA PRIVATE KEY を含む) を特定のパスワードで pkcs12 (.p12) 形式に変換するにはどうすればよいですか? 変換する .pem ファイルが 1,000 個ありますが、1 つずつ変換したくありません。
for f in *.pem; do openssl pkcs12 -export -out "`basename $f .pem`.p12" -inkey "$f" -in "$f" -certfile ./myca.pem -password pass:myPass; done
「myPass」(引用符なし) はパスワードで、myca.pem は CA です。