exp文件的编写
成都做网站、成都网站建设、成都外贸网站建设的关注点不是能为您做些什么网站,而是怎么做网站,有没有做好网站,给创新互联公司一个展示的机会来证明自己,这并不会花费您太多时间,或许会给您带来新的灵感和惊喜。面向用户友好,注重用户体验,一切以用户为中心。#!/usr/bin/expect
set timeout 10
set fname [lindex $argv 0]
set ip [lindex $argv 1]
set dname [lindex $argv 2]
#spawn scp $fname root@$ip:$dname
spawn ssh root@$ip
expect {
"*yes/no*" { send "yes\n";exp_continue}
"*password*" { send "aixocm\n";exp_continue}
}
expect "*#*" {send "cd /tmp\n"}
expect "*#*" {send "mkdir /tmp/zlj\n"}
expect "*#" {send "exit\n"}
expect eof
.sh文件的编写
#!/bin/bash
#
#nmap -n -sT -p22 10.0.10.1-253|egrep -o '10.0.10.[0-9]{1,3}' >ip.txt
#nmap -n -sT -p22 10.0.10.1-253|egrep "22/tcp" |awk '{print $2}' >statu.txt
statu=(`cat statu.txt`)
fname=/root/shell/7_1.sh
dname=/tmp
count=0
while read ip
do
if [ "${statu[$count]}" == "open" ];then
./expect1.exp $fname $ip $dname
fi
((count++))
done < ip.txt
如果.sh文件运行时,提示 spawn:command not found
则给.sh文件添加x权限,使用./x.sh的样式运行
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。