expect安装

Posted hong0632

tags:

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

直接在root下输入expect,如下示例,说明已经安装expect

技术图片

如果报未找到,则需要安装

如果能连到外网,可以使用yum安装

       yum install  expect 

       yum install expect-devel

       yum install tcl 

b.如果不能连外网,只能使用源码编译安装

      手动下载并拷贝tcl8.4.11-src.tar.gzexpect5.45.tar.gz到机器的/root/目录下,

      首先安装tcl包,步骤如下:

      tar xfvz tcl8.4.11-src.tar.gz

      cd tcl8.4.11/unix
      ./configure --prefix=/usr/tcl --enable-shared
      make
      make install

      然后安装expect:

      tar xzvf expect5.45.tar.gz

      cd expect5.45

      ./configure --prefix=/usr/expect --with-tcl=/usr/tcl/lib --with-tclinclude=../tcl8.4.11/generic

      make
      make install

      cp expect  /sbin/

 





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

linux下expect环境安装

如何在bash shell脚本中使用expect

Linux expect 详解

linux expect安装后使用有问题,expect正常,但是send和spawn提示找不到命令

shell expect的简单实用

CentOS下expect 安装