『3-3』Linux之shell脚本基础知识

『3-3』Linux之shell脚本基础知识

一.什么是shell

脚本命令的解释器

二.shell脚本的意义

1.记录命令执行的过程和执行逻辑,以便以后的重复执行
2.脚本可以批量处理主机
3.脚本可以定时处理主机

三.如何创建shell脚本

#!/bin/bash   幻数

在这里插入图片描述

vim自动添加脚本首部

~/.vimrc 用户
etc/vimrc 全局

  1 set nu
  2 "map <F12> ms:call WESTOSTITLE()<cr>'s
  3 autocmd BufNewFile *.sh,*.script call WESTOSTITLE()
  4 func WESTOSTITLE()
  5         call append(0,"############################################")
  6         call append(1,"#Author: lee                        #")
  7         call append(2,"#Version:                                   #")
  8         call append(3,"#Create_Time:    ".strftime("%Y/%m/%d"."                     #"))
  9         call append(4,"#Mail:           [email protected]             #")
 10         call append(5,"#Info:                                      #")
 11         call append(6,"#                                           #")
 12         call append(7,"############################################")
 13         call append(8,"#!/bin/bash")
 14 endfunc
~                                                                               
~                              

在这里插入图片描述

四、如何执行shell脚本

1.手动在环境中开启指定解释器
sh script.sh

在这里插入图片描述

2.直接在当前环境中运行shell中的指令不开启新的shell

source script.sh
在这里插入图片描述

. script.sh

在这里插入图片描述

3.开启脚本中指定的shell并用此shell环境运行脚本中的指令

chmod +x script.sh
/xxx/xxx/script.sh
./script.sh
在这里插入图片描述
在这里插入图片描述

5.如何对脚本进行调试

sh -x /mnt/westos.sh
+ 运行指令
不带+ 命令运行的输出
在这里插入图片描述

脚本练习:

1. ip_show.sh 网卡 显示当前的IP
2. host_messages.sh 显示当前主机的名称,ip登录当前主机的用户

hostname: xxxx
ipaddress: xxxx.xxxx.xxx.xxx
username: root

3. clear_log.sh 执行次脚本后可以清空日志

猜你喜欢

转载自blog.csdn.net/qq_39679699/article/details/114388763