侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130555 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

shell ssh登录脚本

2023-12-23 星期六 / 0 评论 / 0 点赞 / 81 阅读 / 878 字

expect 小知识需要转义的字符/ 需转义为 /} 需转义为 }[ 需转义为 [$ 需转义为 /$ 需转义为 /" 需转义为 /"#!/bin/bashuser='root'password_dir

expect 小知识需要转义的字符/ 需转义为 /
} 需转义为 }[ 需转义为 [$ 需转义为 /$ 需转义为 /" 需转义为 /"#!/bin/bashuser='root'password_dir=/mnt#cmd="echo 'hahah' > /mnt/test.txt"ip=cat $password_dir/password.txt|awk '{print $1}'password=grep $ip password.txt |awk '{print $2}'ssh() {expect -c "set timout 60
spawn ssh $user@$ipexpect {"yes/no" {send "yes/r";exp_continue;}"assword:" {send $password/r;}}expect
sleep 10expect "]
"send "echo 'hahah' > /mnt/test.txt/r"

interact #########允许用户交互 ##如果不需要登录进入交互可以忽略

expect eof"

}

for ip in $ipdosshdone

广告 广告

评论区