linux scp文件脚本

2022/3/4 7:16:00

本文主要是介绍linux scp文件脚本,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

ssh-keygen -t rsa获取密钥

cat /root/.ssh/id_*.pub 查看密钥,黏贴到服务器的.ssh/authorized_keys中(用户家目录)

vi scp.sh
#!/bin/bash
IP=`hostname -I | awk '{print $2}'`;
#获取本机IP,有的不止一个IP
TIME=`date '+%Y%m%d'`;
scp -P 60522 /var/log/wtmp 用户名@IP:/home/systemlog/${TIME}_${IP}_wtmp
scp -P 60522 /var/log/btmp 用户名@IP:/home/systemlog/${TIME}_${IP}_btmp
scp -P 60522 /var/log/history 用户名@IP:/home/systemlog/${TIME}_${IP}_history

 



这篇关于linux scp文件脚本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程