文章目录
一.Here Document
1.Here Document概述
使用I/O重定向的方式将命令列表提供给交互式程序
标准输入的一种替代品
语法格式
命令 <<标记
...
...
标记
2.Here Document使用注意事项
标记可以使用任意合法字符
结尾的标记一定要顶格写,前面不能有任何字符
结尾的标记后面也不能有任何字符(包括空格)
开头标记前后的空格会被省略掉
3.Here Document免交互
通过read命令接收输入并打印
[root@server ~]# vi here_non_interactive_read.sh
#!/bin/bash
read i <<EOF
hi
EOF
echo $i
[root@server ~]# sh here_non_interactive_read.sh
hi
通过passwd给用户设置密码
[root@server ~]# vim here_non_interactive_passwd.sh
#!/bin/bash
passwd lisi <<EOF
abc123
abc123
EOF
[root@server ~]# useradd lisi
[root@server ~]# sh here_non_interactive_passwd.sh
更改用户 lisi 的密码 。
新的 密码:无效的密码: 密码少于 7 个字符
重新输入新的 密码:passwd:所有的身份验证令牌已经成功更新。
4.Here Document变量设定
变量替换
[root@server ~]# vi here_var_replace.sh
#!/bin/bash
doc_file="2020.txt"
i="company"
cat > $doc_file << HERE
this is $i
HERE
[root@server ~]# sh here_var_replace.sh
[root@server ~]# cat 2020.txt
this is company
变量设定
[root@server ~]# vim here_var_set.sh
#!/bin/bash
ivar="Great Beautiful"
myvar=$(cat <<EOF
This is line 1.
That are sun,moon and stars.
$ivar
EOF
)
echo $myvar
[root@server ~]# sh here_var_set.sh
This is line 1. That are sun,moon and stars. Great Beautiful
5.Here Document格式控制
关闭变量替换功能
[root@server ~]# vim here_forcat_shut.sh
#!/bin/bash
a=123456
cat <<'EOF' //单引号关闭变量替换
this is line 1
$a
EOF
[root@server ~]# sh here_forcat_shut.sh
this is line 1
$a
去除每行之前的TAB字符
[root@server ~]# vi here_tab.sh
#!/bin/bash
a=123456
cat <<-'EOF' //-表示抑制行首的TAB作用
This is line 1
$a
EOF
[root@server ~]# sh here_tab.sh
This is line 1
$a
6.Here Document多行注释
通过Here Document方式使Bash支持多行注释
语法格式
:<<DO-NOTHING
第一行注释
第二行注释
......
DO-NOTHING
示例
[root@server ~]# vim here_multi.sh
#!/bin/bash
:<<BASH-HERE
this is line 1
this is line 2
BASH-HERE
echo "exec string"
[root@server ~]# sh here_multi.sh
exec string
二.Expect
1.Expect概述
Expect
建立在tcl之上的一个工具
用于进行自动化控制和测试
解决shell脚本中交互相关的问题
2.Expect安装
挂载光盘
制作本地YUM源
执行安装命令
[root@server ~]# yum -y install expect
......
已安装:
expect.x86_64 0:5.45-14.el7_1
作为依赖被安装:
tcl.x86_64 1:8.5.13-8.el7
3.基本命令
expect
判断上次输出结果中是否包含指定的字符串,如果有则立即返回,否则就等待超时时间后返回
只能捕捉spawn启动的进程的输出
用于接收命令执行后的输出,然后和期望的字符串匹配
send
向进程发送字符串,用于模拟用户的输入
该命令不能自动回车换行,一般要加\r(回车)
spawn
启动进程,并跟踪后续交互信息
结束符
expect eof //执行自动化任务通常使用expect eof
等待执行结束
interact
执行完成后保持交互状态,把控制权交给控制台
set
设置超时时间,过期则继续执行后续指令
单位是秒
timeout -1表示永不超时
默认情况下,timeout是10秒
exp_continue
允许expect继续向下执行指令
send_user
回显命令,相当于echo
接收参数
Expect脚本可以接受从bash传递的参数
可以使用[lindex $argv n]获得
n从0开始,分别表示第一个、第二个、第三个...参数
4.Expect语法
单一分支语法
expect "password:" {send "mypassword\r";}
多分支模式语法
expect "aaa" {send "AAA\r"}
expect "bbb" {send "BBB\r"}
expect "ccc" {send "CCC\r"}
//Send命令不具备回车换行功能,一般要加\r或\n
expect eof {
"aaa" {send "AAA\r"}
"bbb" {send "BBB\r"}
"ccc" {send "CCC\r"}
}
//只要匹配了aaa或bbb或ccc中的任何一个,执行相应的send语句后退出该expect语句
expect {
"aaa" {send "AAA\r";exp_continue}
"bbb" {send "BBB\r";exp_continue}
"ccc" {send "CCC"}
}
//exp_continue表示继续后面的匹配,如果匹配了aaa,执行完send语句后还要继续向下匹配bbb
5.Expect执行方式
直接执行
[root@localhost ~]# more test.sh
#!/usr/bin/expect //Expect二进制文件的路径
set timeout 60 //超时事件60秒
log file test.log //开启日志
log_user 1 //显示信息 0不显示
set 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 a+x test.sh
[root@localhost ~]#./test.sh
嵌入执行
#!/bin/bash
hostname=$1
password=$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 eof
EOF //Expect结束标志,EOF前后不能由空格