From 9a7a30c0bc7aea6b6cc4bfc14ad8580d384e093a Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Tue, 1 Nov 2016 10:54:59 +0900 Subject: [PATCH] Fix README #234 --- README.ja.md | 11 ++++++++--- README.md | 11 ++++++++--- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/README.ja.md b/README.ja.md index 8aa35edb5e..ca4148c006 100644 --- a/README.ja.md +++ b/README.ja.md @@ -577,17 +577,22 @@ Prepareサブコマンドは、Vuls内部で利用する以下のパッケージ ``` $ vuls prepare -help -prepare - [-config=/path/to/config.toml] [-debug] +prepare: + prepare + [-config=/path/to/config.toml] [-ask-key-password] - [SERVER]... + [-debug] + [-ssh-external] + [SERVER]... -ask-key-password Ask ssh privatekey password before scanning -config string /path/to/toml (default "$PWD/config.toml") -debug debug mode + -ssh-external + Use external ssh command. Default: Use the Go native implementation ``` ---- diff --git a/README.md b/README.md index 1493043167..7c189689e4 100644 --- a/README.md +++ b/README.md @@ -583,17 +583,22 @@ Prepare subcommand installs required packages on each server. ``` $ vuls prepare -help -prepare - [-config=/path/to/config.toml] [-debug] +prepare: + prepare + [-config=/path/to/config.toml] [-ask-key-password] - [SERVER]... + [-debug] + [-ssh-external] + [SERVER]... -ask-key-password Ask ssh privatekey password before scanning -config string /path/to/toml (default "$PWD/config.toml") -debug debug mode + -ssh-external + Use external ssh command. Default: Use the Go native implementation ``` ----