在 bash if/then 语句中比较整数和小数时遇到问题

发布于 2025-01-11 04:54:22 字数 410 浏览 0 评论 0原文

我在 bash if/then 语句中比较整数和小数时遇到问题。我正在编写一个简短的脚本来检查系统上的 Linux 版本,如果它低于 7.9,它将创建一个警报。我尝试将比较运算符更改为有效的东西。 (-lt/-gt、、/< />)

#!/bin/bash

linux_version=$(sudo cat /etc/centos-release | cut -b 22-24)
if [ $linux_version -lt 7.9 ]
    echo 'This server needs to be updated to 7.9 Current Version: '$linux_version
then 
    exit 1
else 
    echo 'This server is updated'
    exit 0
fi

I am having trouble comparing integers with decimals in bash if/then statement. I am writing a short script that checks the linux version on a system and if it below 7.9 it will create an alert. I have tried changing the comparing operator to something that works. (-lt/-gt, </>, /< />)

#!/bin/bash

linux_version=$(sudo cat /etc/centos-release | cut -b 22-24)
if [ $linux_version -lt 7.9 ]
    echo 'This server needs to be updated to 7.9 Current Version: '$linux_version
then 
    exit 1
else 
    echo 'This server is updated'
    exit 0
fi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文