Shell 编程之免交互
一:Here Document 免交互
1.1:概述
命令 << 标记.........标记
- 标记可以使用任意的合法字符;
- 结尾的标记一定要顶格写,前面不能有任何字符;
- 结尾的标记后面也不能有任何字符(包括空格);
- 开头的标记前后的空格会被省略掉。
1.2:Here Document 免交互
1:通过 read 命令接收输入并打印
[root@localhost ~]# vim here_non_interactive_read.sh#!/bin/bashread i <<EOFHiEOFecho $i[root@localhost ~]# chmod +x here_non_interactive_read.sh[root@localhost ~]# ./here_non_interactive_read.sh[root@localhost ~]# Hi
2:通过 passwd 给用户设置密码
[root@localhost ~]# vim here_non_interactive_passwd.sh#!/bin/bashpasswd jerry <<EOFThis_is_password //这两行是输入的密码和确认密码This_is_passwordEOF[root@localhost ~]# chmod +x here_non_interactive_passwd.sh[root@localhost ~]# ./here_non_interactive_passwd.sh[root@localhost ~]#
1.3:Here Document 变量设定
[root@localhost ~]# vim here_var_set.sh#!/bin/bashivar="Great! Beautyful!"myvar=$(cat <<EOF //将 Here Document 整体赋值给变量This is Line 1.That are Sun,Moon and Stars.$ivar //输出时会进行变量替换EOF)echo $myvar[root@localhost ~]# sh here_var_set.shThis is Line 1. That are Sun,Moon and Stars. Great! Beautyful!
1.4:Here Document格式控制
1:关闭变量替换的功能
[root@localhost ~]# cat here_format_shut.sh#!/bin/bashcat <<'EOF' //对标记加单引号,即可关闭变量替换This is Line 1.$kgcEOF[root@localhost ~]# sh here_format_shut.shThis is Line 1.$kgc //$kgc 没有发生改变,不做变量替换
2:去掉每行之前的 TAB 字符
[root@localhost ~]# vim here_format_tab.sh#!/bin/bashcat <<-'EOF'This is Line 1.$kgcEOF[root@localhost ~]# sh here_format_tab.shThis is Line 1.$kgc //输出结果同上一示例
1.5:Here Document 多行注释
: << DO-NOTHING第一行注释第二行注释……DO-NOTHING
二:expect 免交互
2.1:概述
2.2:except安装
2.3:基本命令介绍
(1)脚本解释器
#!/usr/bin/expect
(2)expect/send
expect 命令用来判断上次输出结果里是否包含指定的字符串,如果有则立即返回,否则就等待超时时间后返回,只能捕捉由 spawn 启动的进程的输出。
方法一expect "$case1" {send "$respond1\r"}方法二expect "$case1"send "$response1\r"方法三expect{"$case1" {send "$response1\r"}"$case2" {send "$response2\r"}"$case3" {send "$response3\r"}}上述语法结构中 $case1 代表检测命令的输出结果,如果输出内容和 $case1 一致,通过 send 命令模拟用户发送内容到终端。
(3)spawn
spawn 后面通常跟一个命令,表示开启一个会话、启动进程,并跟踪后续交互信息。其语法如下所示。
spawn Linux 执行命令
(4)结束符
- expect eof :等待执行结束,若没有这一句,可能导致命令还没执行,脚本就结束了。
- interact : 执行完成后保持交互状态, 把控制权交给控制台,这时可以手动输入信息。需要注意的是,expect eof 与 interact 只能二选一。
(5)set
(6)exp_continue
(7)send_user
(8)接收参数
set param0 [lindex $argv 0]
if {$argc< 1} {#do somethingsend_user "usage: $argv0 <param1><param2> ... "exit}
2.4:expect语法
1. 语法结构
(1)单一分支语法
expect "password : " {send "mypassword\r“;}
(2)多分支模式语法
expect{"aaa" {send "AAA\r"}"bbb" {send "BBB\r"}"ccc" {send "CCC\r"}}
2. expect 执行方式
[root@localhost ~]# more direct.sh#!/usr/bin/expectset timeout 60log_file test.loglog_user 1set hostname [lindex $argv 0]set password [lindex $argv 1]spawn ssh root@${hostname}expect {"(yes/no)"{send "yes\r"; exp_continue}"*password"{send "$password\r"}}interact[root@localhost ~]# chmod +x direct.sh[root@localhost ~]# ./direct.sh 127.0.0.1 123456 //参数为主机 ip 和密码
[root@localhost ~]# more implant.sh#!/bin/bashhostname=$1password=$2/usr/bin/expect<<-EOF //expect 开始标志spawn ssh root@${hostname}expect {"(yes/no)"{send "yes\r";exp_continue}"*password"{send "$password\r"}}expect "*]#"send "exit\r"expect eofEOF //expect 结束标志, EOF 前后不能有空格[root@localhost ~]# sh implant.sh 127.0.0.1 123456 //参数为主机 ip 和密码
原文地址:https://blog.csdn.net/zx1211x/article/details/139339227
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!