[root@server2 ~]# read a
abc
[root@server2 ~]# echo $a
[root@server2 ~]# vi z.sh
[root@server2 ~]# chmod +x z.sh
[root@server2 ~]# ./z.sh
#!/bin/bash
# read免交互
read z <
通过passwd给用户设置密码
[root@server2 ~]# useradd daoge 先创建用户,为设置密码
[root@server2 ~]# vi passwd.sh
[root@server2 ~]# chmod +x passwd.sh
[root@server2 ~]# ./passwd.sh
#!/bin/bash
# 给用户设置密码
passwd daoge << mm
123456
123456
mm
变量替换
[root@server2 ~]# vi file.sh
[root@server2 ~]# chmod +x file.sh
[root@server2 ~]# ./file.sh
[root@server2 ~]# cat a.txt
#!/bin/bash
# 查看内容重定向给一个文件
a=/root/a.txt
b=abc 变量可见
cat > $a << EOF
nihao $b
EOF
变量设定
[root@server2 ~]# vi fuzi.sh
[root@server2 ~]# chmod +x fuzi.sh
[root@server2 ~]# ./fuzi.sh
#!/bin/bash
# 多行内容赋值给变量
fuz=a
b=$(cat << EOF 多行内容整合为一个整体
it is a apple.
this is a tree.
$fuz
EOF
)
echo $b
关闭变量替换功能
[root@server2 ~]# vi fuzi.sh
[root@server2 ~]# ./fuzi.sh
#!/bin/bash
# 多行内容赋值给变量
fuz=a
b=$(cat <<'EOF' 单引号关闭变量替换
it is a apple.
this is a tree.
$fuz
EOF
)
echo $b
通过Here Document方式使Bash支持多行注释
语法格式:
:<
第二行注释
…
DO-NOTHING
示例
[root@server2 ~]# vi test.sh
[root@server2 ~]# chmod +x test.sh
[root@server2 ~]# ./test.sh
#!/bin/bash
# 注释
:<
挂载光盘
制作本地YUM源
执行安装命令
[root@server2 ~]# yum -y install expect
[root@server2 ~]# rpm -qa | grep expect
[root@server2 ~]# rpm -qa | grep tcl
1. spawn
1 启动进程,并跟踪后续交互信息
2. expect
1 判断上次输出结果中是否包含指定的字符串,如果有则立即返回,否则就等待超时时间后返回
2 只能捕捉由spawn启动的进程的输出
3 用于接收命令执行后的输出,然后和期望的字符串匹配
3. send
1 向进程发送字符串,用于模拟用户的输入
2 该命令不能自动回车换行,一般要加\r(回车)或\n
4. 结束符
1 expect eof (执行自动化任务通常使用expect eof)
2 等待执行结束
3 expect <
5 eof
6 interact
7 执行完成后保持交互状态,把控制权交给控制台
5. set
1 设置超时时间,过期则继续执行后续指令
2 单位是秒
3 timeout -l表示永不超时
4 默认情况下,timeout是10秒
6. exp_continue
1 允许expect继续向下执行指令
2 解析:如果有一条语句错误,不加exp_continue,就会到此为止,退出
3 加上exp_continue会继续执行后续语句,不退出。
7.send_user
1 回显命令,相当于echo
8.接收参数
1 Expect脚本可以接受从bash传递的参数
2 可以使用[lindex $argv n]获得
3 n从0开始,分别表示第一个,第二个,第三个…参数
4 /bin/bash的位置变量是从$1开始到$9结束
5 Expect[lindex $argv 0]相当于/bin/bash的$1
单一分支语法(输入一次情况)
expect "password:" {send "passsword\r"}
多分支模式语法(连续输入多次情况)
1.第一种
expect "aaa" {send "AAA\r"}
expect "bbb" {send "BBB\r"}
expect "ccc" {send "CCC\r"}
send命令不具备回车换行功能,一般要加\r或\n
2.第二种
expect{
"aaa" {send "AAA\r"}
"bbb" {send "BBB\r"}
"ccc" {send "CCC\r"}
}
只要匹配了aaa或者bbb或者ccc中的任何一个,执行相应的send语句后退出该expect语句(只会匹配执行一条语句)
3.第三种
expect{
"aaa" {send "AAA";exp_continue}
"bbb" {send "BBB";exp_continue}
"ccc" {send "CCC"}
}
exp_continue表示继续后面的匹配,如果匹配了aaa,执行完send语句后还要继续向下匹配bbb(继续执行向下的语句,直到结束)
直接执行
1.先安装expect
[root@server2 ~]# yum -y install expect
[root@server2 ~]# vi expect.sh
[root@server2 ~]# chmod +x expect.sh
[root@server2 ~]# ./expect.sh 20.0.0.10 123456
#!/usr/bin/expect
# ssh免交互
set timeout 60 设置超时时间60秒
set hostname [lindex $argv 0] 设置变量名,变量值来自位置变量0
set password [lindex $argv 1]
log_file a.log 设置日志文件记录保存的文件夹
log_user 1 记录屏幕输出
spawn ssh root@$hostname 发起启动进程ssh某主机名
expect {
"(yes/no)" {send "yes\r;exp_continue"}
"password" {send "$password\r"}
}
interact
将结束符interact换成expect eof唯一的区别是在退出用户时会有明显的卡顿
interact退出无卡顿,非常流畅
[root@server2 ~]# vi expect.sh
[root@server2 ~]# ./expect.sh 20.0.0.10 123456
[root@server1 ~]# exit
#!/usr/bin/expect
# ssh免交互
set timeout 60
set hostname [lindex $argv 0]
set password [lindex $argv 1]
log_file a.log
log_user 1
spawn ssh root@$hostname
expect {
"(yes/no)" {send "yes\r;exp_continue"}
"password" {send "$password\r"}
}
expect eof
[root@server2 ~]# vi expect.sh
[root@server2 ~]# chmod +x expect.sh
[root@server2 ~]# ./expect.sh 20.0.0.10 123456
#!/bin/bash
# ssh免交互
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前后不能有空格