0%

安装expect


作者: 耗子007


安装TCL

下载地址:http://www.tcl.tk/software/tcltk/download.html

目前最新版本: tcl8.5.19-src.tar.gz

1
2
3
4
5
6
7
8
9
10
11
wget http://prdownloads.sourceforge.net/tcl/tcl8.5.19-src.tar.gz

tar zxf tcl8.5.19-src.tar.gz

cd tcl8.5.19/unix/

./configure

make

make install

安装expect

expect 官网:http://expect.sourceforge.net/

1
2
3
4
5
6
7
8
9
10
11
12
13
wget http://nchc.dl.sourceforge.net/project/expect/Expect/5.45/expect5.45.tar.gz

tar zxf expect5.45.tar.gz

cd expect5.45

./configure –with-tcl=/usr/local/lib/ –with-tclinclude=../tcl8.5.19/generic/

make

make install

ln -s /usr/local/bin/expect /usr/bin/expect