shell-shell脚本中的基本知识


一、什么是shell

脚本中命令的解释器

二、shell脚本的意义

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

三、如何创建shell脚本

幻数在脚本运行时会优先执行

#!/bin/bash ##幻数,
vim自动添加脚本首部
"map <F4> ms:call WESTOSTITLE()<cr>'s
autocmd BufNewFile *.sh,*.script call WESTOSTITLE()
func WESTOSTITLE()
call append(0,"###############################################")
call append(1,"# Author: lee")
call append(2,"# Version: ")
call append(3,"# Create_Time: ".strftime("%Y/%m/%d"))
call append(4,"# Mail: lee@westos.org")
call append(5,"# Info: ")
call append(6,"# ")
call append(7,"################################################")
call append(8,"")
call append(9,"#!/bin/bash")
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
+ ##运行指令
不带+ ##命令运行的输出

cat test.sh
#!/bin/bash
cat
test.sh中指定默认使用的shell是/bin/bash

./test.sh 表示当前目录不在环境变量PATH中,用 . 表示当前目录

在这里插入图片描述
在这里插入图片描述
当脚本没有可执行权限时,需要手动指定运行脚本的shell。

在这里插入图片描述

在这里插入图片描述

练习:

1
ip_show.sh 网卡 显示当前的IP
2
host_messages.sh 显示当前主机的名称,ip登陆当前主机的用户
hostname: xxxxx
ipaddress: xxxx.xxxx.xxx.xxx
username: root
3.
clear_log.sh 执行次脚本后可以清空日志

#!/bin/bash
[ -z "$1" ] && {
   echo error: please input network device:
   exit
} || {
  ifconfig "$1" &> /dev/null || {
     echo "error: $1 is not exist!"
     exit
   }
}
ifconfig $1 | awk '/inet/{printf $2}'
# awk命令表示对含有inet关键字的行,显示第二列
#和下图中的命令
ifconfig $1 | awk '/inet\>/{printf $2}'
#执行结果一样,这里\>表示对字符>转义

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值