Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sftp 中 -P 开关的语法是什么?
我在尝试 ...
sftp -P /home/me/dev_bin/ssh user@hostname
...但结果是使用说明...
Attaching to /home/me/dev_bin/ssh... usage: ssh [...]
我认为 ssh 没有看到命令行的其余部分。
编辑:这是一个愚蠢的问题,但我不确定是否要删除它。删除它会保留我的虚荣心,但把它留在这里会帮助其他阅读理解能力差的受害者找到答案。
ssh -P port指定要连接到远程主机上的端口。(端口应该是一个数字。)
ssh -P port
我想你正在寻找
ssh -S program用于加密连接的程序的名称。该程序必须了解 ssh(1) 选项。
ssh -S program
两个引号(括号内的注释除外)均从man sftp
man sftp