第一步、安装tcl
下载tcl安装包:https://sourceforge.net/projects/tcl/files/Tcl/8.6.12/tcl8.6.12-
1、src.tar.gz/download
2、tar -zxf tcl8.6.12-src.tar.gz
3、cd tcl8.6.12/unix/
4、./configure --prefix=/usr/tcl --enable-shared
(这里如果执行不下去:linux无网安装------GCC、GCC-C++_Frank_HXF的博客-CSDN博客)
5、make
6、make install
# 目录tcl8.6.12/unix/下的tclUnixPort.h复制到generic中
7、cp tclUnixPort.h ../generic/
第二步、安装expect
下载expect地址:https://jaist.dl.sourceforge.net/project/expect/Expect/5.45.4/expect5.45.4.tar.gz
1、tar -zxf expect5.45.4.tar.gz
2、cd expect5.45.4
# 配置expect的安装路径,--with-tcl为告诉configure脚本tcl解释器位置,--with-tclinclude为告诉脚本tcl头文件位置
3、./configure --prefix=/usr/expect --with-tcl=/usr/tcl/lib --with-tclinclude=../tcl8.6.12/generic
4、make
5、make install
6、ln -s /usr/tcl/bin/expect /usr/expect/bin/expect
第三步、写入环境变量
1、vi /etc/profile
# 写入下面内容内容
2、export PATH=$PATH:/usr/expect/bin/
# 更新配置文件
3、source /etc/profile
第四步、输入expect命令输出:expect1.1