转自:http://blog.chinaunix.net/uid-20639775-id-2453085.html Expect是在Tcl基础上创建起来的,它还提供了一些Tcl所没有的命令,它可以用来做一些linux下无法做到交互的一些命令操作,在远程管 理方面发挥很大的作用。 spawn命令激活一...
分类:
其他好文 时间:
2015-05-07 18:30:29
阅读次数:
127
今天用Xcode编译项目时,遇到一个莫名其妙的问题:could not build module ‘Foundation‘,以及could not build module ‘UIKit‘,NSString.h expect identifier问题,提示的位置是在Pod的库中。几经查找,才发现是...
分类:
其他好文 时间:
2015-05-07 17:13:06
阅读次数:
534
#!/usr/bin/expect -fspawn scp /shell/bms3acount.txt root@192.168.35.186:/root/BMS/set timeout 20expect "(yes/no)?" {send "yes\r"}expect "password:" {s...
分类:
其他好文 时间:
2015-05-06 14:59:24
阅读次数:
168
共有三台机器192.168.2.21192.168.2.22192.168.2.24都建有zabbix这个用户,密码统一为zabbix192.168.2.21为资源分发中心,zabbix用户用于秘钥分发hosts是一个文本文件,用于存储ip列表#!/bin/bashforXin`cathosts`doexpect-c"settimeout-1spawnssh-copy-idzabbix@${X}expect\"*..
分类:
其他好文 时间:
2015-05-02 23:30:54
阅读次数:
154
#!/usr/bin/expect -f
set timeout 10
set name [lindex $argv 0]
set pwd [lindex $argv 1]
set ip [lindex $argv 2]
spawn ssh -l $name $ip
expect "password:"
send "$pwd\r"
interact...
分类:
其他好文 时间:
2015-04-27 11:22:01
阅读次数:
110
数据库相关操作
1、创建数据库
create database databasename
成功返回Query OK
失败返回Error 1007
2、查看所有的数据库
show databases
注意:是databases,复数
3、选择数据库
use databasename
返回是Database changed 知道这个在使用expect时有用
失败返回Err...
分类:
数据库 时间:
2015-04-26 10:53:48
阅读次数:
215
完成此脚本,主要是为了将本地服务器上的文件同步到腾讯云跳板机,然后再中转上传到腾讯云服务器。当然这也只是初步的方案。#vim/data/scripts/put_file.exp#!/usr/bin/expect
########################################################################
#pushlocalserver’sf..
分类:
其他好文 时间:
2015-04-25 16:49:00
阅读次数:
189
适配器模式英文原文是:Convert the interface of a class into anther interface clients expect. Adapter lets classes work together that couldni`t otherwise because of incompatible interface. 意思是将一个类的接口变化成客户端所期待的另一种...
分类:
其他好文 时间:
2015-04-23 11:07:25
阅读次数:
142
在codewars网站做题,做到一下一道题。var add = function (a, b) { return a + b; };var lazy_sum = make_lazy(add, 2, 3);Test.expect(lazy_sum() === 5, 'Evaluates the exp...
分类:
其他好文 时间:
2015-04-22 00:22:52
阅读次数:
113
一:先来看一下效果:二:实现的步骤(在机器172.16.0.1(centos系统)执行下列命令,就可以远程无密码登录172.16.0.2):1:ssh-keygen-trsa(回车回车)2:ssh-copy-id-i/root/.ssh/id_rsa.pubroot@172.16.0.2(172.16.0.2换成ssh-server的ip即可)三:通过expect或者<<EOF直接输入给..
分类:
其他好文 时间:
2015-04-18 14:40:39
阅读次数:
115