링크 ux expect 프로필 및 설치

9056 단어
프로필:       
        우 리 는 Shell 을 통 해 순환, 판단 등 간단 한 흐름 제어 기능 을 실현 할 수 있다.그러나 상호작용 이 필요 한 상황 에 대해 서 는 인공 적 으로 관여 해 야 한다. 가끔 우 리 는 텔 넷 서버 등 과 상호작용 을 하 는 기능 을 실현 해 야 할 수도 있다.expect 는 이런 기능 을 실현 하 는 도구 다.
expect 는 사람의 간섭 없 이 자동 과 상호작용 임 무 를 실현 하 는 무료 프로 그래 밍 도구 언어 입 니 다.Expect 의 저자 인 Don Libes 는 1990 년 Expect 를 작성 하기 시 작 했 을 때 Expect 에 대해 다음 과 같은 정 의 를 내 렸 다. Expect 는 자동 상호작용 기능 을 실현 하 는 소프트웨어 세트 (Expect is a software suite for automating inteactive tools) 이다.시스템 관리 자 는 스 크 립 트 를 사용 하여 명령 이나 프로그램 에 입력 할 수 있 습 니 다. 이 명령 과 프로그램 들 은 터미널 (terminal) 에서 입력 을 받 기 를 원 합 니 다. 일반적으로 이 입력 들 은 수 동 으로 입력 합 니 다.expect 는 프로그램의 알림 시 뮬 레이 션 표준 입력 에 따라 프로그램 에 필요 한 입력 을 제공 하여 상호작용 프로그램 을 실행 할 수 있 습 니 다.
        쉽게 말 하면 스 크 립 트 는 자신 이 수 동 으로 입력 해 야 할 정 보 를 입력 하 는 데 도움 을 준다.
설치:
-rw-r--r-- 1 ddd ddd  525572 2011-09-15 expect.tar.gz
-rw-r--r-- 1 ddd ddd 3641017 2011-09-15 tcl8.4.16-src.tar.gz
tar -xzvf  

Expect 는 Tcl 프로 그래 밍 언어 지원 이 필요 합 니 다. 시스템 에서 Expect 를 실행 하려 면 먼저 Tcl 을 설치 해 야 합 니 다.
tcl 설치:
[ddd@hh zx]$ cd /home/zx/tcl8.4.16/unix

이 명령 을 통 해 설치 인 자 를 볼 수 있 습 니 다:
설치 매개 변수 설정:
[ddd@hh unix]$./configure --help
Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
  --cache-file=FILE       cache test results in FILE
  --help                  print this message
  --no-create             do not create output files
  --quiet, --silent       do not print `checking...' messages
  --version               print the version of autoconf that created configure
Directory and file names:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [same as prefix]
  --bindir=DIR            user executables in DIR [EPREFIX/bin]
  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  --datadir=DIR           read-only architecture-independent data in DIR
                          [PREFIX/share]
  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
                          [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  --includedir=DIR        C header files in DIR [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  --infodir=DIR           info documentation in DIR [PREFIX/info]
  --mandir=DIR            man documentation in DIR [PREFIX/man]
  --srcdir=DIR            find the sources in DIR [configure dir or ..]
  --program-prefix=PREFIX prepend PREFIX to installed program names
  --program-suffix=SUFFIX append SUFFIX to installed program names
  --program-transform-name=PROGRAM
                          run sed PROGRAM on installed program names
Host type:
  --build=BUILD           configure for building on BUILD [BUILD=HOST]
  --host=HOST             configure for HOST [guessed]
  --target=TARGET         configure for TARGET [TARGET=HOST]
Features and packages:
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --x-includes=DIR        X include files are in DIR
  --x-libraries=DIR       X library files are in DIR
--enable and --with options recognized:
  --enable-man-symlinks   use symlinks for the manpages
  --enable-man-compression=PROG
                      compress the manpages with PROG
  --enable-man-suffix=STRING
                      use STRING as a suffix to manpage file names
                      (default: tcl)
  --enable-threads        build with threads
  --enable-shared         build and link with shared libraries [--enable-shared]
  --enable-64bit          enable 64bit support (where applicable)
  --enable-64bit-vis      enable 64bit Sparc VIS support
  --enable-corefoundation use CoreFoundation API [--enable-corefoundation]
  --disable-load          disallow dynamic loading and load command
  --enable-symbols        build with debugging symbols [--disable-symbols]
  --enable-langinfo       use nl_langinfo if possible to determine
                          encoding at startup, otherwise use old heuristic
  --enable-dtrace         build with DTrace support [--disable-dtrace]
  --enable-framework      package shared libraries in MacOSX frameworks [--disable-framework]:

expect 를 설치 할 때 사용 할 헤더 파일 복사:
[ddd@hh unix]$./configure --prefix=/home/zx/tcl
[ddd@hh unix]$make
[ddd@hh unix]$make install

설치 expect:
[ddd@hh unix]$cp tclUnixPort.h ../generic/

이 명령 을 통 해 설치 인 자 를 볼 수 있 습 니 다:
[ddd@hh unix]$ cd /home/zx/expect-5.43

설치 매개 변수 설정:
[ddd@hh expect-5.43]$ ./configure --help
Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
  --cache-file=FILE       cache test results in FILE
  --help                  print this message
  --no-create             do not create output files
  --quiet, --silent       do not print `checking...' messages
  --version               print the version of autoconf that created configure
Directory and file names:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [same as prefix]
  --bindir=DIR            user executables in DIR [EPREFIX/bin]
  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  --datadir=DIR           read-only architecture-independent data in DIR
                          [PREFIX/share]
  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
                          [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  --includedir=DIR        C header files in DIR [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  --infodir=DIR           info documentation in DIR [PREFIX/info]
  --mandir=DIR            man documentation in DIR [PREFIX/man]
  --srcdir=DIR            find the sources in DIR [configure dir or ..]
  --program-prefix=PREFIX prepend PREFIX to installed program names
  --program-suffix=SUFFIX append SUFFIX to installed program names
  --program-transform-name=PROGRAM
                          run sed PROGRAM on installed program names
Host type:
  --build=BUILD           configure for building on BUILD [BUILD=HOST]
  --host=HOST             configure for HOST [guessed]
  --target=TARGET         configure for TARGET [TARGET=HOST]
Features and packages:
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --x-includes=DIR        X include files are in DIR
  --x-libraries=DIR       X library files are in DIR
--enable and --with options recognized:
  --enable-threads        build with threads (not supported)
  --with-tcl           directory containing tcl configuration (tclConfig.sh)
  --with-tk           directory containing tk configuration (tkConfig.sh)
  --enable-symbols   allow use of symbols if available
  --with-tclinclude       directory where tcl private headers are
  --enable-shared     build libexpect as a shared library
  --with-x               whether or not to use X (default yes)
  --with-tkinclude       directory where tk private headers are
  --disable-load     disallow dynamic loading
  --enable-gcc        allow use of gcc if available

 
 

좋은 웹페이지 즐겨찾기