linux tcl expect 安装(转)

Posted 黄洪波写点东西的地方

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux tcl expect 安装(转)相关的知识,希望对你有一定的参考价值。

linux tcl expect 安装

一、Tcl安装

 1、  下载:tcl8.4.20-src.tar.gz

http://www.tcl.tk/software/tcltk/downloadnow84.tml

 

 2、解压缩源码包
       tar xfvz tcl8.4.20-src.tar.gz

 3、安装配置
       cd tcl8.4.20/unix
       ./configure --prefix=/usr/local/tcl --enable-shared
       make
       make install

 4、子目录unix下面的tclUnixPort.h 复制到generic中

   cp tcl8.4.20/unix/tclUnixPort.h tcl8.4.20/generic/

 

二、expect安装

   1、下载:http://sourceforge.net/projects/expect/

   2、解压缩源码包
       tar xzvf expect5.45.tar.gz

   3、cd expect5.45
       ./configure --prefix=/usr/local/expect --with-tcl=/usr/local/tcl/lib --with-tclinclude=../tcl8.4.20/generic

   4、 make
       make install
       ln -s /usr/local/tcl/bin/expect /usr/local/expect/bin/expect

 

   5、创建链接到/bin下

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










以上是关于linux tcl expect 安装(转)的主要内容,如果未能解决你的问题,请参考以下文章

linux下expect环境安装

linux通过expect实现脚本自动交互

CentOS下expect 安装

expect免交互脚本编程

Shll编程之Expect免交互

expect的用法和实现自动化脚本