Skip to content

Commit fb071a4

Browse files
authored
Merge pull request #2 from takumi314/update-doc-usage-installation
Update README.md
2 parents bf1eeca + b3fe3a6 commit fb071a4

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,25 @@
22
The Command Line Interface (CLI) for applying PKCS #12 file (.p12) with its password, automatically to store the extracted identity in the keychain.
33

44
## Installation
5-
...
5+
6+
```shell
7+
$sh install.sh
8+
```
69

710
## 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+
```
924
1025
### Options
1126

install.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/sh
2+
13
cp -f .build/release/p12_importer /usr/local/bin/p12_importer
24

35
if [[ -e /usr/local/bin/p12_importer ]]; then

0 commit comments

Comments
 (0)