Shell编程总结

目录

[0.关于 ( ),\` \`,{ },\[ \],(( )),[ ],(( )),[[ ]]](#0.关于 ( ),` `,{ },[ ],(( )),[ ],(( )),[[ ]])

[1.if 判断](#1.if 判断)

[2.case 语句](#2.case 语句)

[3.for 循环](#3.for 循环)

[4.while 循环](#4.while 循环)

5.函数

[6.应用:监测 MySQL 数据库异常](#6.应用:监测 MySQL 数据库异常)


0.关于 ( ),\` \`,{ },\[ \],(( )),[ ],(( )),[[ ]]

  1. $( ) 与 ` ` (反引号) 都是用做命令替换
  2. **{ }** 用于**变量替换**。一般情况下,var 与${var} 并没有不一样。但是用 ${ } 会比较精确的界定变量名称的范围。
  3. $[ ] $(( )) 是一样的,都是进行数学运算。支持+ - * / %:分别为 "加、减、乘、除、取模"。但是bash只能作整数运算,浮点数当作字符串处理。
  4. [ ] 即为test命令的另一种形式。
  5. **(( )) [[ ]]**分别是[ ]的针对数学比较表达式和字符串表达式的加强版。其中(( )),不需要再将表达式里面的大小于符号转义。

1.if 判断

bash 复制代码
#基本语法
if [ 条件判断式 ]
then
程序
elif [ 条件判断式 ]
then
程序
else
程序
fi
bash 复制代码
#!/bin/bash
read -p "input two number": a b
if [ $a -lt $b ]; then
 echo "$a < $b"
elif [ $a -eq $b ]; then
 echo "$a = $b"
else
 echo "$a > $b"
fi

2.case 语句

bash 复制代码
#基本语法
case $变量名 in
"值 1")
如果变量的值等于值 1,则执行程序 1
;;
"值 2")
如果变量的值等于值 2,则执行程序 2
;;
...省略其他分支...
*)
如果变量的值都不是以上的值,则执行此程序
;;
esac
注意
bash 复制代码
#!/bin/bash
case $1 in
"1")
    echo "aaa"
;;       #相当于break
"2")
    echo "bbb"
;;
*)
    echo "ccc"
;;
esac

3.for 循环

bash 复制代码
#基本语法
for (( 初始值;循环控制条件;变量变化 ))
do
程序
done

for 变量 in 值 1 值 2 值 3...
do
程序
done
bash 复制代码
#!/bin/bash
sum=0
for((i=0;i<=100;i++))
do
sum=$[$sum+$i]
done
echo $sum

#!/bin/bash
for i in aaa bbb ccc
do
echo $i
done

4.while 循环

bash 复制代码
#基本语法
while [ 条件判断式 ]
do
程序
done
bash 复制代码
#!/bin/bash
sum=0
i=1
while [ $i -le 100 ]
do
sum=$[$sum+$i]
i=$[$i+1]
done
echo $sum

5.函数

bash 复制代码
#基本语法
[ function ] funname[()]
{
Action;
[return int;]
}
bash 复制代码
#!/bin/bash
function sum()
{
s=0
s=$[$1+$2]
echo "$s"
}

read -p "Please input the number1: " n1;
read -p "Please input the number2: " n2;
sum $n1 $n2;

6.应用:监测 MySQL 数据库异常

bash 复制代码
#安装mysql: 
yum install mysql-server -y  #CentOS
systemctl start mysqld

sudo apt-get install mysql-server  #Ubuntu
systemctl start mysql
bash 复制代码
#!/bin/bash
#or $(netstat -lntup|grep 3306|wc -l)
if [ `netstat -lntup|grep 3306|wc -l` -gt 0 ]; then
 echo "MySQL is Running"
else
 echo "MySQL is Stopped"
 systemctl start mysqld
fi
相关推荐
良许Linux13 分钟前
0.96寸OLED显示屏详解
linux·服务器·后端·互联网
蜜獾云24 分钟前
docker 安装雷池WAF防火墙 守护Web服务器
linux·运维·服务器·网络·网络安全·docker·容器
小屁不止是运维25 分钟前
麒麟操作系统服务架构保姆级教程(五)NGINX中间件详解
linux·运维·服务器·nginx·中间件·架构
bitcsljl38 分钟前
Linux 命令行快捷键
linux·运维·服务器
ac.char41 分钟前
在 Ubuntu 下使用 Tauri 打包 EXE 应用
linux·运维·ubuntu
Cachel wood1 小时前
python round四舍五入和decimal库精确四舍五入
java·linux·前端·数据库·vue.js·python·前端框架
Youkiup1 小时前
【linux 常用命令】
linux·运维·服务器
qq_433618441 小时前
shell 编程(二)
开发语言·bash·shell
qq_297504611 小时前
【解决】Linux更新系统内核后Nvidia-smi has failed...
linux·运维·服务器
weixin_437398211 小时前
Linux扩展——shell编程
linux·运维·服务器·bash