在shell脚本中实现 scp 文件的时候不手动输入密码

前端之家收集整理的这篇文章主要介绍了在shell脚本中实现 scp 文件的时候不手动输入密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参数说明:
-r:拷贝目录
-c:允许压缩

执行脚本:

#!/usr/bin/expect -f
set password 密码
#download
spawn scp root@ip:/root/a.wmv /home/yangyz/
set timeout 300 
expect "root@ip's password:"
set timeout 300 
send "$password\r"
set timeout 300 
send "exit\r"
expect eof

#upload
spawn scp /home/xxx.sql root@ip:/root/xxx.sql 
set timeout 300 
expect "root@ip's password:"
set timeout 300 
send "$password\r"
set timeout 300 
send "exit\r"
expect eof
原文链接:https://www.f2er.com/bash/391524.html

猜你在找的Bash相关文章