Shell编程之免交互

Posted 还行少年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell编程之免交互相关的知识,希望对你有一定的参考价值。


一、Here Document

1.概述

  • 使用I/O重定向的方式将命令列表提供给交互式程序
  • 标准输入的一种替代品
  • 语法格式
命令  <<标记
...
...
标记

2.使用注意事项

  • 标记可以使用任意合法字符
  • 结尾的标记一定要顶格写,前面不能有任何字符
  • 结尾的标记后面也不能有任何字符(包括空格)
  • 开头标记前后的空格会被省略掉

3.示例

3.1 直接修改密码

[root@localhost ~]# useradd zhangsan   
[root@localhost ~]# passwd zhangsan <<EOF
> 123
> 123
> EOF
更改用户 zhangsan 的密码 。
新的 密码:无效的密码: 密码少于 8 个字符
重新输入新的 密码:passwd:所有的身份验证令牌已经成功更新。
[root@localhost ~]#

3.2 忽略制表符

[root@localhost ~]# bash test.sh 
	123
321
[root@localhost ~]# cat test.sh 
#!/bin/bash
cat <<EOF
	123
321
EOF
[root@localhost ~]# bash test.sh 
	123
321
[root@localhost ~]# cat test.sh 
#!/bin/bash
cat <<-EOF   //-使制表符失效
	123
321
EOF
[root@localhost ~]# bash test.sh 
123
321
[root@localhost ~]# 

3.3 多行注释

[root@localhost ~]# cat test.sh 
#!/bin/bash
<<hl
cat <<-EOF
	123
321
EOF
hl

echo 123
[root@localhost ~]# bash test.sh 
123
[root@localhost ~]# 

二、Expect

1.概述

  • 建立在tcl之上的一个工具
  • 用于进行自动化控制和测试
  • 解决shell脚本中交互相关的问题

2.基本命令

2.1 expect

  • 判断上次输出结果是否包含指定的字符串,如果有则立即返回,否则就等待超时时间返回
  • 只能捕捉由spawn启动的进程的输出
  • 用于接收命令执行后的输出,然后和期望的字符串匹配

2.2 send

  • 向进程发送字符串,用于模拟用户的输入
  • 该命令不能自动换行,一般要加\\r(回车)

2.3 spawn

  • 启动进程,并跟踪后续交互信息

2.4结束符

  • expect eof (等待执行结束)
  • interact (执行完成后保持交互状态,把控制权交给控制台)

2.5 set

  • 设置超时时间,过期则继续执行后续指令
  • 默认,timeout事10s

2.6 exp_continue

  • 允许expect继续向下执行指令

2.7 send_user

  • 回显命令,相当于echo

3.示例

3.1 远程其他主机

[root@localhost ~]# cat ssh.sh
#!/bin/bash

expect -c "
spawn ssh root@192.168.30.3
expect \\"\\(yes/no\\)\\" { send \\"yes\\r\\" }
expect \\"password:\\" { send \\"123456\\r\\" }
interact
"


[root@localhost ~]# bash ssh.sh
spawn ssh root@192.168.30.3
The authenticity of host '192.168.30.3 (192.168.30.3)' can't be established.
ECDSA key fingerprint is SHA256:396BF852ITFX9y8B/HTvPAeICxxYzk4Wc7o8nWgyIQ4.
ECDSA key fingerprint is MD5:75:63:23:ba:73:cc:5d:4d:e6:2a:6a:9b:c3:71:43:a7.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.30.3' (ECDSA) to the list of known hosts.

root@192.168.30.3's password: 
Last login: Mon Jun 14 19:26:25 2021 from 192.168.30.254
[root@localhost ~]# 

3.2 无交互使得另一台主机的新磁盘挂载

[root@localhost ~]# cat fdisk.sh 
#!/bin/bash


expect -c "   //在bash环境下调用expect
spawn ssh root@192.168.30.4
expect \\"password:\\" { send \\"123456\\r\\"}
expect \\"]#\\" { send \\"fdisk /dev/sdb\\r\\"}
expect \\"):\\" { send \\"n\\r\\"}
expect \\"):\\" { send \\"p\\r\\"}
expect \\"):\\" { send \\"\\r\\"}
expect \\"):\\" { send \\"\\r\\"}
expect \\"):\\" { send \\"\\r\\"}
expect \\"):\\" { send \\"w\\r\\"}
expect \\"]#\\" { send \\"mkdir /data\\r\\"}
expect \\"]#\\" { send \\"mkfs.xfs /dev/sdb1\\r\\"}
expect \\"]#\\" { send \\"mount /dev/sdb1 /data\\r\\"}
expect \\"]#\\" { send \\"df -h\\r\\"}
expect eof
"


以上是关于Shell编程之免交互的主要内容,如果未能解决你的问题,请参考以下文章

SHELL编程之免交互

Shell编程之免交互

Shell编程之免交互

Expect 自动化控制和测试 Here Document 免交互 Linux- shell编程之免交互

shell之免交互图文详解

Shell脚本之免交互(EOFExpect)