File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 2
2
The Command Line Interface (CLI) for applying PKCS #12 file (.p12) with its password, automatically to store the extracted identity in the keychain.
3
3
4
4
## Installation
5
- ...
5
+
6
+ ``` shell
7
+ $sh install.sh
8
+ ```
6
9
7
10
## Usage
8
- ...
11
+
12
+ ** 実行例**
13
+ ``` bash
14
+ $ p12_importer --p12 ~ /hoge.p12 --password ******
15
+ ```
16
+
17
+ ** コマンド引数**
18
+ ``` shell
19
+ Options:
20
+ --help [default: ] - help
21
+ --password [default: ] - give its password if p12 file is password protected.
22
+ --p12 [default: ] - give p12 file path
23
+ ` ` `
9
24
10
25
# ## Options
11
26
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
1
3
cp -f .build/release/p12_importer /usr/local/bin/p12_importer
2
4
3
5
if [[ -e /usr/local/bin/p12_importer ]]; then
You can’t perform that action at this time.
0 commit comments