gpt4 book ai didi

regex - 如何使用 shell 脚本查找 Linux 发行版名称?

转载 作者:IT王子 更新时间:2023-10-29 00:48:35 26 4
gpt4 key购买 nike

我正在编写一个 shell 脚本,我需要在其中使用当前操作系统名称才能使其通用。喜欢:

if [ $Operating_System == "CentOS" ]
then
echo "CentOS";
# Do this
elif [ $Operating_System == "Ubuntu" ]
then
echo "Ubuntu";
# Do that
else
echo "Unsupported Operating System";
fi

这怎么可能?在 lsb_release -a 命令或其他命令上应用正则表达式?

谢谢..

最佳答案

$ lsb_release -i
Distributor ID: Fedora
$ lsb_release -i | cut -f 2-
Fedora

关于regex - 如何使用 shell 脚本查找 Linux 发行版名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29581754/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com