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
标签:脚本,log,60522,IP,systemlog,linux,var,home,scp 来源: https://www.cnblogs.com/yizhibaiyang/p/15960475.html