20.31expect脚本同步文件#!/usr/bin/expectsetpasswd"liang.123"spawnrsync-avroot@192.168.137.130:/tmp/12.txt/tmp/将远程的/tmp/12.txt同步到本地的机器上expect{"yes/no"{send"yes\r"}第一次会提示yes或no&q
分类:
其他好文 时间:
2018-04-26 23:39:30
阅读次数:
329
十八周二次课(4月26日)20.31 expect脚本同步文件20.32 expect脚本指定host和要同步的文件20.33 构建文件分发系统20.34 批量远程执行命令20.31 expect脚本同步文件自动同步文件 编辑脚本文件:vi 4.expect#!/usr/bin/expectset passwd "123456"spawn rsync -av root@192.
分类:
其他好文 时间:
2018-04-26 17:00:32
阅读次数:
205
20.31 expect脚本同步文件
20.32 expect脚本指定host和要同步的文件
20.33 构建文件分发系统
20.34 批量远程执行命令
分类:
其他好文 时间:
2018-04-26 01:08:21
阅读次数:
161
批量远程执行命令在一台机器上远程到多台机器上执行多条命令,怎么实现呢?写一个登录到多台机器并执行命令的脚本文件remote-exec-command.sh#!/usr/bin/expectsethost[lindex$argv0]setcommand[lindex$argv1]setuser"root"setpasswd"root"spawnssh$user@$hostexpect{"yes/no
分类:
其他好文 时间:
2018-03-18 17:45:16
阅读次数:
159
expect脚本同步文件1.自动同步文件[root@garytao-01shell]#vi4.expect增加如下脚本内容:#!/usr/bin/expectsetpasswd"123456"spawnrsync-avroot@172.16.111.110:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"$passwd\r"
分类:
其他好文 时间:
2018-02-27 17:43:49
阅读次数:
202
20.31expect脚本同步文件自动同步文件1.同步远程机器hao2上/tmp/12.txt文件到本机/tmp/下:[root@hao-01~]#vim4.expect添加内容:#!/usr/bin/expectsetpasswd"admin"spawnrsync-avroot@192.168.211.129:/tmp/12.txt/tmp/expect{"yes/no"{send"yes\r"}"password:"{send"$passwd\..
分类:
其他好文 时间:
2017-09-21 15:52:02
阅读次数:
212
#!/usr/bin/expect # filename: batch_execute.sh if ( $argc != 2 ){ puts "usage: expect $argv0 ip command" exit }set ip [lindex $argv 0]set cmd [lindex ...
分类:
其他好文 时间:
2017-09-07 13:42:05
阅读次数:
157
python远程批量执行 我并不是一个专业的开发,我一直在学习linux运维,对于python也是接触不久,所以代码写的并不是很规范简洁。 前段时间一个同学找我一起做一个自动化运维平台,我对python的django还没有了解,并且对于HTML和JS这类开发学习还没有涉及,所以我说我做些后台的实现, ...
分类:
编程语言 时间:
2017-03-13 12:40:55
阅读次数:
952
#!/usr/bin/envpython#KissPython###################ip.list##################################172.16.13.118:root:centos:hostname:##172.16.5.114:root:centos:hostname:whoami:w:ifconfigeth0:###########################################################importparamiko..
分类:
编程语言 时间:
2015-01-01 23:57:12
阅读次数:
398