Declaraciones de juicio en bucle en Shell (2) mientras que declaración, hasta declaración

while declaración
1. Características: si la condición es verdadera, ingrese al ciclo; si la condición es falsa, salga del ciclo

2. Estructura gramatical:

   while   表达式
    do
          command...
    done

Caso de introducción:

Calcule de 1 a 50 números pares y
Inserte la descripción de la imagen aquí
Inserte la descripción de la imagen aquí
hasta la declaración
1. Características: Es lo opuesto a while, mientras no se cumpla la condición, seguirá en bucle (fallará repetidamente)
2. Estructura de la declaración:

   until expression 
    do
          command
    done

Caso de introducción:

Calcular la suma de números pares 1-50

Inserte la descripción de la imagen aquí
Inserte la descripción de la imagen aquí
Guión de combate real
Ejercicio 1: escriba un guión para sincronizar la hora del sistema cada 30 segundos. Si la sincronización falla, se enviará una alarma por correo electrónico; si la sincronización es exitosa, se enviará un correo electrónico cada 100 veces para notificación.
Inserte la descripción de la imagen aquí
Ejercicio 2: escriba un script para construir automáticamente el servicio nfs

#!/bin/bash
echo -e  "\033[32m######testing the network.......\033[0m"
ping -c1 -w1 172.25.254.6 &>/dev/null
	if [ $? -eq 0 ]
	then
		echo  -e "\033[32mthe network is ok !!\033[0m"
	else
		echo  -e "\033[31mthe network is not running!!\033[0m"
		exit
	fi

echo -e "\033[32m########turnning down the selinux.......\033[0m"
setenforce 0 &>/dev/null
	if [$? -eq 0 ]
	then
		echo  -e "\033[32mselinux is turning down\033[0m"
	fi
systemctl stop firewalld &>/dev/null
	if [ $? -eq 0 ]
	then
		echo -e "\033[32mfirewall is stoped"
	fi
echo -e "\033[32m########testing the software......\033[0m"
rpm -q rpcbind &>/dev/null
	if [ $? -eq 0 ]
	then
		echo "rpcbind is already installed"
     	else
		echo "rpcbind is not installed"
dnf install rpcbind -y
        if [ $? -eq 0 ];then
                         echo "rpcbind is now installed"
        else
                         echo "rpcbind install failed"   
                         exit 
                 fi
             exit
	fi
echo -e "\033[32m#######mkdir dir network chmod .......\033[0m"
read -p "Please input share dir:  " dir
[ -e $dir ] && {
        echo "the dir exists"
}||{
        mkdir -p $dir
        echo "$dir create success"
        exit
}
chmod 1777 $dir
read -p "please input the subnet to share: " subnet
read -p "please input share permission: " permission
 
echo -e "\033[32medit nfs configure file /etc/exports\033[0m"
read -p "input 1 -> clear config,default is add: " choice
if [ $choice -eq 1 ];then
     > /etc/exports
fi
cat >> /etc/exports << EOF
$dir $subnet($permission)
EOF
 
echo -e "\033[32msetting service start with poweron and start searvice......\033[0m "
 
echo -e "\033[31mcheck nfs-server is start?\033[0m"
systemctl status nfs-server.service | grep active &>/dev/null
if [ $? -eq 0 ];then
        systemctl restart nfs-server
        echo "Nfs server restart success"
else
        systemctl start rpcbind
        systemctl start nfs-server
        systemctl enable --now rpcbind
        systemctl enable --now nfs-server
fi
 
 
echo -e "\033[32m########testing wheather network could be use......."
showmount -e 172.25.254.6 | grep $dir &> /dev/null
[ $? -eq 0 ] && {
        echo -e "\033[32mshare success\033[0m" 
}||{
        echo -e "\033[32mshare failed\033[0m"
        exit 
}

echo -e "\033[32mnfs.service is created successfully!!!\033[0m"

Supongo que te gusta

Origin blog.csdn.net/qq_42958401/article/details/108488075
Recomendado
Clasificación