首页 > 系统 > Linux > 正文

如何将LINUX本地的文件内容写入到远程服务器的文件中?

2024-08-28 00:01:13
字体:
来源:转载
供稿:网友
如何将LINUX本地的文件内容写入到远程服务器的文件中?

服务器之间最好ssh免密码登录,如果不是免密码登录,每次写入都要手敲密码。
 
------------将本地的test.log文件的内容写入到远程服务器test1.log文件中。
 
脚本内容:
 
#!bin/bash
 
sshroot@192.168.30.1'cat/opt/test.log>>/opt/test1.log'
 
-------------将远程服务器test1.log文件中的内容写入到本地的test.log文件中。
 
脚本内容:
 
#!bin/bash
 
sshroot@192.168.30.1'cat/opt/test.log'>>/opt/test1.log
 
  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表