用ssh上传文件?

ane*_*yzm 1 ssh upload

我可以在不使用 ftp 或 sftp 的情况下将文件上传到服务器吗?

只用 ssh 吗?

use*_*686 10

我知道的所有 SSH 实现包含 SFTP,所以我不明白您为什么不想使用它。

反正:

(cd sourcedir && tar cf - file otherfile) | ssh host "cd targetdir && tar xvf -"
Run Code Online (Sandbox Code Playgroud)

或者对于单个文件,不保留元数据:

ssh host "cat > targetfile" < sourcefile
Run Code Online (Sandbox Code Playgroud)