如何获取scp版本?

如何获取scp版本?

如何获取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没有版本吗?

答案1

用于ssh -V查看 OpenSSHssh及相关客户端工具的版本。sshscp和的安装版本sftp都来自 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

相关内容