Python安装使用命令行交互模块pexpect的基础教程
一、安装
1、安装easy_install工具
wgethttp://peak.telecommunity.com/dist/ez_setup.py
pythonez_setup.py安装easy_install工具(这个脚本会自动去官网搜索下载并安装)
pythonez_setup.py-Usetuptools
升级easy_install工具
2、安装pexpect
easy_installPexpect
测试一下:
[root@OMSpython]#python Python2.7.3rc1(default,Nov72012,15:03:45) [GCC4.1.220080704(RedHat4.1.2-48)]onlinux2 Type"help","copyright","credits"or"license"formoreinformation. >>>importpexpect >>>importpxssh >>>
ok已经安装完成。
二、基本用法
1.run()函数
run功能相对简单,只能实现简单交互
run(command,timeout=-1,withexitstatus=False,events=None,extra_args=None,logfile=None,cwd=None,env=None)