📄 build-req
字号:
#!/bin/bash## Build a certificate signing request and private key. Use this# when your root certificate and key is not available locally.#if test $# -ne 1; then echo "usage: build-req <name>"; exit 1fi if test $KEY_DIR; then cd $KEY_DIR && \ openssl req -days 3650 -nodes -new -keyout $1.key -out $1.csr -config $KEY_CONFIGelse echo you must define KEY_DIRfi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -