一、介绍
expect脚本是Tcl脚本语言的拓展。用来实现自动的交互式任务,无需人为干预。在实际开发中,运行shell脚本有时候会输入linux密码或者是mysql密码等,而expect可以帮我们输入。
二、安装
expect在linux系统中没有自带,需要我们自行安装,在Ubuntu系统下,安装命令如下
sudo apt-get update
sudo apt-get install expect
三、简单的expect脚本
3.1、编写脚本
首先创建expect脚本
sudo vim hello.exp
在hello.exp下写如下内容:
#!/usr/bin/expect
set
2021-12-25 21:20:03
83KB
c
ec
ex
1