Scp

如何獲得 scp 版本?

  • June 2, 2022

如何獲取scp版本?

已經嘗試過:

$ scp --version
scp: unknown option -- -
usage: scp [-346ABCOpqRrsTv] [-c cipher] [-D sftp_server_path] [-F ssh_config]
          [-i identity_file] [-J destination] [-l limit]
          [-o ssh_option] [-P port] [-S program] source ... target

$ man scp | grep version
<nothing>

這是否意味著scp沒有版本?

用於ssh -V查看 OpenSSH 的哪個版本ssh以及相關的客戶端工具來自哪個版本。安裝的ssh,scpsftp都來自同一版本的 OpenSSH。

在我的 OpenBSD 系統上:

$ ssh -V
OpenSSH_9.0, LibreSSL 3.5.2

在附近的 Ubuntu 機器上:

$ ssh -V
OpenSSH_8.2p1 Ubuntu-4ubuntu0.5, OpenSSL 1.1.1f  31 Mar 2020

引用自:https://unix.stackexchange.com/questions/704740