本文主要是介绍Shell脚本编写-猜测当前系统是哪个发行版,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、编写脚本
该脚本会确定当前系统中可用的包管理器。同时还以已安装的软件包管理器为指导,猜测当前系统是基于哪个 Linux 发行版。
#!/bin/bash
#检查当前系统的可用包管理器,以安装的软件包管理器为指导,猜测当前的系统是基于哪个Linux发行版
#
##################### 检查 redhat #######################
#
echo " 检查基于红帽的包管理器 "
echo " 应用程序容器... "
#####
if (which rpm &> /dev/null)
thenitem_rpm=1echo " 您有rpm包管理器 "
#
elseitem_rpm=0
#
fi
####
if (which dnf &> /dev/null)
thenitem_dnfyum=1echo " 您有dnf包管理器 "
#
elif (which yum &> /dev/null)
thenitem_dnfyum=1echo " 您有yum包管理器 "
elseitem_dnfyum=0
#
fi
####
if (which flatpak &> /dev/null)
thenitem_flatpak=1echo " 您有flatpak应用程序容器。"
#
elseitem_flatpak=0
#
fi
####
#脚本会计算出一个分数(redhatscore)。这个分数随后会用于对系统采用的发行版进行猜测
redhatscore=$[$item_rpm + $item_dnfyum + $item_flatpak] #
##################### 检查 Debian #######################
#
echo
echo " 检查基于debian的包管理器 "
echo " 应用程序容器... "
#####
if (which dpkg &> /dev/null)
thenitem_dpkg=1echo " 您有基本的dpkg包管理器 "
#
elseitem_dpkg=0
#
fi
####
if (which apt &> /dev/null)
thenitem_aptaptget=1echo " 您有apt包管理器 "
#
elif (which apt-get &> /dev/null)
thenitem_aptaptget=1echo " 您有apt-get/apt-cache包管理器 "
#
elseitem_aptaptget=0
fi
####
if (which snap &> /dev/null)
thenitem_snap=1echo " 您有snap应用程序容器 "
#
elseitem_snap=0
#
fi
####
#
debianscore=$[$item_dpkg + $item_aptaptget + $item_snap]
#
#
##################### Determine Distro #######################
#
echo
if [ $debianscore -gt $redhatscore ]
thenecho " 您的Linux发行版很可能是基于debian的 "#
elif [ $redhatscore -gt $debianscore ]
thenecho " 您的Linux发行版很可能是基于Red-hat的 "
elseecho " 无法确定Linux发行版 "
fi
#
echo
#
#############################################################
#
exit
2、运行脚本测试!!!
这篇关于Shell脚本编写-猜测当前系统是哪个发行版的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!