linux常用脚本
自动登录expect脚本,login.exp
#!/usr/bin/expect -f #auto ssh login set timeout 30 spawn ssh -p 22 -l root 100.100.100.100 expect { "yes/no" {send "yes\r"} "password:" {send "daydayup\r"} } interact
文本替换shell
#!/bin/bash for i in `find $1 -name "*.html"` do echo $i if [ -f $i ];then sed -e "s/$2/$3/g" $i >tmp.txt if [ $? -eq 0 ]; then echo "$i is replaced!" cp -f tmp.txt $i else echo "$i failed" fi fi done if [ -f tmp.txt ];then rm -rf tmp.txt fi
相关推荐
linuxwcj 2020-10-21
彼岸随笔 2020-10-20
yutou0 2020-10-17
luvzhan 2020-07-28
jarrygao 2020-11-02
shipinsky 2020-09-23
touchfuture 2020-09-16
hongsheyoumo 2020-09-04
momoku 2020-09-11
ruancw 2020-08-27
TuxedoLinux 2020-08-18
vvu 2020-08-16
downtown 2020-08-11
maxelliot 2020-06-28
cuixingwudi 2020-06-25
linuxdashencom 2020-06-21
旭灿 2020-06-16