shell脚本中如何实现scp传输?
Posted dakewei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本中如何实现scp传输?相关的知识,希望对你有一定的参考价值。
示例脚本如下:
#! /bin/sh expect -c " spawn scp -r /home/jello/jello.txt [email protected]110.110.110.110:/home/jello/ expect { \"*assword\" {set timeout 20; send \"jello\r\"; exp_continue;} #此处的jello为密码,自行替换 } expect eof"
以上是关于shell脚本中如何实现scp传输?的主要内容,如果未能解决你的问题,请参考以下文章
shell中scp(ascp)如何忽略已经传的数据,继续传输数据?