码迷,mamicode.com
首页 > 其他好文 > 详细

expect 实现模拟交互

时间:2020-04-29 20:07:00      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:pass   inter   class   user   echo   client   foo   实现   use   

expect 实现模拟交互

expect安装

apt install expect

server

#! /bin/bash
read -p "username: " username
read -sp "password: " password
echo -en "\n" # echo 
echo $username, $password

client

#! /usr/bin/expect
spawn ./server.sh
expect "username: "
send "foo\n"
expect "password: "
send "bar\n"
interact

运行方法

./client.sh

expect 实现模拟交互

标签:pass   inter   class   user   echo   client   foo   实现   use   

原文地址:https://www.cnblogs.com/pkuimyy/p/12804221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!