本文阅读量 次
expect/autoexpect 命令用法¶
expect / autoexpect 可以自动响应命令行的输入请求,让交互式命令行可以完整自动化运行
安装¶
sudo apt install expect
基本 expect 脚本¶
针对以下交互脚本的 expect 脚本如下
#!/bin/bash
read -p "What is your name? " name
read -p "What is your country? " country
read -p "Enter your email address: " email
#!/bin/expect
spawn ./prompts.sh
expect "What is your name?" { send "Egidio\n" }
expect "What is your country?" { send "Italy\n" }
expect "Enter your email address" { send "nomail@gmail.com\n" }
expect EOF
autoexpect 自动生成 expect 脚本¶
可以通过 autoexpect
来执行一遍目标脚本,同时把整个输入过程录制为 expect 脚本
autoexpect target.sh
执行完成后会在当前目录下生成一个 script.exp
脚本,该脚本就是针对 target.sh 的一个自动化交互的脚本,可以根据实际情况进行微调,之后就可以通过 ./script.exp
来无交互运行 target.sh
了