shell脚本的基础知识教程
一、什么是shell
在计算机科学中,Shell俗称壳(用来区别于核),是指“为使用者提供操作界面”的软件(命令解析器)。它类似于DOS下的command.com和后来的cmd.exe。它接收用户命令,然后调用相应的应用程序。
脚本命令的解释器。
二、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: [email protected]")
call append(5,"# Info: ")
call append(6,"# ")
call append(7,"################################################")
call append(8,"")
call append(9,"#!/bin/bash")
endfunc
效果如下:
四、如何执行shell脚本
这里用 sleep 1000 作为实验脚本
1).手动在环境中开启指定解释器
sh script.sh
2).直接在当前环境中运行shell中的指令不开启新的shell
source westos.sh
. westos.sh
3).开启脚本中指定的shell并使用此shell环境运行脚本中的指令
chmod +x westos.sh
/xxx/xxx/westos.sh
./westos.sh
五、 如何对脚本进行调试
sh -x /mnt/westos.sh
+ ##运行指令
不带+ ##命令运行的输出
脚本练习
1
ip_show.sh 网卡 显示当前的主机名称
####################################
#Author sun
#Create_Time: 2020/12/10
####################################
#!/bin/bash
[ -z $1 ] && {
echo -e "\033[31mError:Please input interface following script\033[0m"
exit
}
ifconfig $1 &> /dev/null && {
IP=$(ifconfig $1 | awk '/inet\>/{print $2}')
[ -z "$IP" ] && {
echo "$1 is not have ipaddress"
}||{
echo $IP
}
}||{
echo -e "\033[31mError: $1 is not exist !!\033[0m"
exit
}
验证:
2
host_messages.sh 显示当前主机的名称,ip登陆当前主机的用户
hostname: xxxxx
ipaddress: xxxx.xxxx.xxx.xxx
username: root
####################################
#Author sun
#Create_Time: 2020/12/10
####################################
#!/bin/bash
echo hostname : "$(hostname)"
echo ipaddress : "$(ifconfig enp1s0 | awk '/inet\>/{print $2}')"
echo username : "$USER"
验证:
3.
clear_log.sh 执行次脚本后可以清空日志
vim /etc/rsyslog.conf 在配置文件中查看所有日志存放的位置
####################################
#Author sun
#Create_Time: 2020/12/10
####################################
#!/bin/bash
[ $USER = "root" ] || {
echo -e "\033[31mPlease changer user to root!\033[0m"
exit
}
LOG=$(sed -ne 's/-//g' -e '/\/var\/log/p' /etc/rsyslog.conf | awk '{print $2}')
for i in $LOG
do
> $i && {
echo -e "\033[32m $i cleared\033[0m"
}
done
验证: