?? 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 + -