答案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
家里
在远程命令两边添加单引号:
$ ssh [email protected] 'echo "hello gourav how are you" >> /g.txt'
编辑:是的,正如@Andrew Miloradovsky 指出的那样,使用>>
而不是>
附加而不是重新编写。
或许
$ ssh user@host "cat remote-file-1 >> remote-file-2"
假设文件在user
家里