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

expect实现交互式输入

时间:2015-12-09 19:52:29      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:expect   交互式输入   shell调用expect   

一.用expect实现交互式输入

#!/usr/bin/expect -f
set LUKS_passphrase xxxx123
set Verify_passphrase xxxx123
spawn cryptsetup luksFormat /dev/vdb1

expect "Are you sure? (Type uppercase yes):"
set timeout 5
send "YES\r"

expect "Enter LUKS passphrase:"
set timeout 5
send "$LUKS_passphrase\r"

expect "Verify passphrase:"
set timeout 5
send "$Verify_passphrase\r"

send "exit\r"
expect eof

二.用shell脚本调用expect脚本

expect x.exp

本文出自 “自动化rolin” 博客,请务必保留此出处http://luoguoling.blog.51cto.com/1568501/1721237

expect实现交互式输入

标签:expect   交互式输入   shell调用expect   

原文地址:http://luoguoling.blog.51cto.com/1568501/1721237

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