diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-05 22:46:02 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-05 22:46:02 +0900 |
commit | 243bf1fa5710c0928e4a52ad4c5a0f0e73022554 (patch) | |
tree | 41f692ce8c03534e149841de6600dc84ec50e7ee /README.md | |
parent | 8cb5c81fcfc5a43224c1d2c0eed374d85667a0d8 (diff) |
add -H option to disable host key check
tests use this option.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -60,10 +60,11 @@ make install - Usage ```shell-session -$ mscp -h -mscp: copy files over multiple ssh connections +$ mscp +mscp v0.0.0: copy files over multiple ssh connections -Usage: mscp [CvqDdh] [-n nr_conns] [-s min_chunk_sz] [-S max_chunk_sz] +Usage: mscp [vqDCHdh] [-n nr_conns] + [-s min_chunk_sz] [-S max_chunk_sz] [-b sftp_buf_sz] [-B io_buf_sz] [-l login_name] [-p port] [-i identity_file] [-c cipher_spec] source ... target @@ -84,6 +85,7 @@ Usage: mscp [CvqDdh] [-n nr_conns] [-s min_chunk_sz] [-S max_chunk_sz] -i IDENTITY identity file for publickey authentication -c CIPHER cipher spec, see `ssh -Q cipher` -C enable compression on libssh + -H disable hostkey check -d increment ssh debug output level -h print this help ``` @@ -94,7 +96,6 @@ Usage: mscp [CvqDdh] [-n nr_conns] [-s min_chunk_sz] [-S max_chunk_sz] ```shell-session $ mscp /tmp/test.img 10.0.0.1:/tmp/ [===============================================================] 100% 8GB/8GB 3.02GB/s -$ ``` - `-v` options increment verbose output level. |