Expect
1.1、Expect简介
是什么 ?:a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.
开发语言:C
官方主页:https://core.tcl-lang.org/expect
1.2、通过包管理器安装Expect
操作系统包管理器安装命令
macOSHomeBrewbrew install expect
GNU/LinuxHomeBrewbrew install expect
aptsudo apt-get install -y expect
CentOSyumsudo yum install -y expect
dnfsudo dnf install -y expect
openSUSEzyppersudo zypper install -y expect
Alpine Linuxapksudo apk add expect

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm expect
Gentoo LinuxPortagesudo emerge expect
1.3、通过编译源码安装Expect 

step1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + gzip
编译时gmakegcc / GCC | Clang / LLVM
运行时POSIX shTcl

step2、使用curl命令下载Expect源码包 (

curl -LO https://downloads.sourceforge.net/expect/expect5.45.4.tar.gz

step3、使用tar解压Expect源码包

tar vxf expect5.45.4.tar.gz

step4、进入expect5.45.4目录

cd expect5.45.4

step5、查看expect5.45.4目录中的内容

step6、创建构建目录,并进入该目录

mkdir build && cd build

step7、使用../configure配置编译参数

../configure是一个可执行的POSIX sh脚本,用它 配置后会产生gmake的配置文件Makefile

../configure的使用格式如下:

./configure [option]... [VAR=VALUE]...
option说明
--help    | -h查看../configure的使用帮助
--version | -V查看../configure是哪个版本的autoconf生成的
--quiet   | -q | --silent不输出checking...这些信息
--prefix=DIR指定安装目录。默认是/usr/local/
--host=HOST
设置目标程序运行的CPU平台
一般不需要设置,除非你想要交叉编译
默认与与宿主机一样
--enable-FEATURE[=yes|no]
yes:开启FEATURE
no :关闭FEATURE
--enable-option-checking[=yes|no]是否检查有无不认识的--enable-FEATURE--with-PACKAGE参数
--enable-shared[=yes|no]是否生成动态库
--enable-rpath[=yes|no]是否使用runtime path(硬编码动态库的搜索路径)
--enable-64bit[=yes|no]是否支持64bit
--enable-64bit-vis[=yes|no]是否支持Sparc VIS 64bit
--enable-threads[=yes|no]是否支持多线程
--enable-symbols[=yes|no]是否支持debugging
--enable-wince[=yes|no]是否支持WindowsCE
--with-PACKAGE[=yes|no]
yes: 使用PACKAGE
no:不使用PACKAGE
--with-tcl[=DIR]设置Tcl库文件所在目录
--with-tclinclude[=DIR]设置Tcl头文件所在目录
--with-celib[=DIR]设置WindowsCE支持库所在目录

enable-FEATURE对应的选项,还有disable-FEATUREdisable-FEATURE相当于enable-FEATURE=no

与    with-PACKAGE对应的选项,还有without-PACKAGEwithout-PACKAGE相当于    with-PACKAGE=no

VARVALUE示例说明
CCgcc |  clang指定C编译器
CFLAGS-O2 -v指定C编译器的参数
CPPcpp指定C预处理器
CPPFLAGS-I<includeDIR>指定C预处理器的参数
LDFLAGS-L<libDIR>指定C链接器的参数
LIBS-l<libName>指定C链接器要链接的库的名称

示例:

../configure --prefix=/usr CFLAGS='-O2 -v'

step8、使用make进行编译、安装

make && sudo make install
1.4、Expect中包含的命令
1.5、Expect中包含的头文件
1.6、Expect中包含的库文件
  • libexpect5.45.4.{a | so | dylib}