我可以不使用 ftp 或 sftp 将文件上传到服务器吗?
只使用 ssh 吗?
答案1
答案2
我知道的所有 SSH 实现做包括 SFTP,所以我不明白你为什么不想使用它。
反正:
(cd sourcedir && tar cf - file otherfile) | ssh host "cd targetdir && tar xvf -"
或者对于单个文件,不保留元数据:
ssh host "cat > targetfile" < sourcefile
我可以不使用 ftp 或 sftp 将文件上传到服务器吗?
只使用 ssh 吗?
我知道的所有 SSH 实现做包括 SFTP,所以我不明白你为什么不想使用它。
反正:
(cd sourcedir && tar cf - file otherfile) | ssh host "cd targetdir && tar xvf -"
或者对于单个文件,不保留元数据:
ssh host "cat > targetfile" < sourcefile