关于expect简单使用的小脚本

脚本如下,有问题可以和我联系。。(*^__^*) 嘻嘻……

  
  
  
  
  1. #! /usr/bin/expect  
  2. #by 小崔  
  3. #QQ:295749093  
  4. set timeout 30  
  5. spawn /usr/bin/rsync -e "ssh -p 20120" -azv --partial --progress ./pcre-8.10.tar.gz [email protected]:/root/  
  6. expect "*password:" 
  7. send "test123\n" 
  8. expect eof  
  9. exit 

 

你可能感兴趣的:(shell,脚本,expect,使用方法)