如何通过 ssh 追加文件?

如何通过 ssh 追加文件?

我想通过 ssh 附加服务器上已存在的文件,我尝试:

  ssh [email protected] echo "hello gourav how are you">/g.txt

在此输入图像描述

但g.txt中没有数据

答案1

在远程命令两边添加单引号:

$ ssh [email protected] 'echo "hello gourav how are you" >> /g.txt'

编辑:是的,正如@Andrew Miloradovsky 指出的那样,使用>>而不是>附加而不是重新编写。

答案2

或许

$ ssh user@host "cat remote-file-1 >> remote-file-2"

假设文件在user家里

相关内容