码迷,mamicode.com
首页 >  
搜索关键字:linux系统批量修改密码 expect ssh免交互    ( 1280个结果
macOS 自动修改mac地址脚本
介于 某公众号提供了通过修改mac地址来链接BUPT_mobile 的推送,上网上查了一下咋写脚本,实现一键修改mac地址的功能 新建记事本文件(用xcode或者textedit都可以) 代码如下: /////// #!/usr/bin/expect -fset timeout 10set pass ...
分类:系统相关   时间:2016-12-19 11:43:07    阅读次数:208
第3章 字符串
3.1 基本字符串操作 所有标准的序列操作(索引、分片、乘法、判断成员资格、求长度、取最大值和最小值)对字符串同样适用。字符串都是不可变的。因此,类似以下的分片赋值是不合法的: 3.2 字符串格式化:精简版 字符串格式化适用字符串格式化即百分号(%)来实现。%也可以用作模运算(求余)操作符。 >>> ...
分类:其他好文   时间:2016-12-18 15:00:57    阅读次数:180
使用 expect 命令执行自动分发系统
一、命令 except 实例详解 介绍 expect 使用场景 二、构建文件分发系统 需求背景 实现思路 核心命令 ...
分类:其他好文   时间:2016-12-18 01:08:18    阅读次数:198
远程创建用户的脚本
#!/usr/bin/expectsetIP[lindex$argv0]setPASS[lindex$argv1]spawnsshroot@$IPuseradddingdangmao-p‘westos‘expect{yes/no{send"yes\r";exp_continue}"password:"{send"$PASS\r"}}interact#!/usr/binforxin{248..249}doping-c1-w1172.25.254.$x&>/dev/null&&(..
分类:其他好文   时间:2016-12-16 23:29:52    阅读次数:160
Everday English
12.26 The world won't care about your self-esteem. The world will expect you to accomplish something before you feel good about yourself. 这世界并不会在意你的自尊 ...
分类:其他好文   时间:2016-12-16 22:01:18    阅读次数:297
python的简洁是shell无法代替的
之前线上服务器分发配置都是用shell和expect脚本分发,脚本写了很长,上周换了ansible,现在自己用python写一个,就30行代码就可以实现需求,之前的shell写了快200行了,蛋疼,代码如下: 鸡汤一回,对python感兴趣了,学的才快,就像去年对linux很痴迷,一年时间,现在的我 ...
分类:编程语言   时间:2016-12-16 19:43:48    阅读次数:253
Gone Fishing
Gone Fishing John is going on a fising trip. He has h hours available (1 ≤ h ≤ 16), and there are n lakes in the area (2 ≤ n ≤ 25) all reachable along ...
分类:其他好文   时间:2016-12-16 16:59:27    阅读次数:235
The world won't care about your self-esteem. The world will expect you to accomplish something before you feel good about yourself.
The world won't care about your self-esteem. The world will expect you to accomplish something before you feel good about yourself. 这世界并不会在意你的自尊,这世界希望 ...
分类:其他好文   时间:2016-12-16 09:45:24    阅读次数:182
shell2
实验12.case语句[root@web1~]#vim大哥是个applecase$1inapple)echobanana;;banana)echoapple;;*)echoerroresac测试:[root@web1~]#sh大哥是个appleapplebanana[root@web1~]#sh大哥是个applebananaapple[root@web1~]#sh大哥是个appleyzerror实验13.expect自动应答脚本(输入ip和..
分类:系统相关   时间:2016-12-16 02:08:17    阅读次数:266
linux笔记 3-11 3-12 shell脚本
##1.创建新shell脚本##1.创建包含bash命令的文本文件。文件的第一行应为:#!/bin/bash2.使文件可执行(使用chmod+xscripts)3.脚本调试模式:#!/bin/bash-x#bash-xscripts##2.引用和转义##弱引用将字符串放置在双引号中,保留字符串中所有字符的文字值,$、`、\和!字符除外。换..
分类:系统相关   时间:2016-12-16 02:02:06    阅读次数:229
1280条   上一页 1 ... 88 89 90 91 92 ... 128 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!