Ubuntu Server init.d - 测试值是否大于 1

发布于 2024-11-04 00:36:35 字数 275 浏览 6 评论 0原文

我正在编写一个 init.d 脚本,并希望测试返回值是否大于 1。“大于”的正确语法是什么?

mc_status() {
        if ps ax | grep -ci 'CanaryMod.jar' > 0
        then
                echo "$SERVICE is running."
        else
                echo "$SERVICE is not running."
        fi
}

I am writing an init.d script and am looking to test if a returned value is greater than 1. What would be the correct syntax for 'greater than'?

mc_status() {
        if ps ax | grep -ci 'CanaryMod.jar' > 0
        then
                echo "$SERVICE is running."
        else
                echo "$SERVICE is not running."
        fi
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走走停停 2024-11-11 00:36:35

根据我的记忆,init 脚本是在 sh shell 中编写的。许多 shell 脚本使用 pid 文件(通常位于 /var/run 中)来检查服务是否正在运行。在您的情况下,使用 ps 中的过程进行验证。

您正在执行的测试有些不正确,因为 ps/grep 返回的不是数字而是一组字符或什么也不返回。请尝试以下操作:

mc_status() {
        if [ ! -z "`ps ax | grep -ci 'CanaryMod.jar'`" ]; then
                echo "$SERVICE is running."
        else
                echo "$SERVICE is not running."
        fi
}

From my recollection init scripts are written in the sh shell. Many shell scripts use a pid file (usually found in /var/run) to check if a service is running. In your case a process as found in ps is used for validation.

The test you are performing is somewhat incorrect, as ps/grep are returning not a number but a set of characters or nothing. Try the following:

mc_status() {
        if [ ! -z "`ps ax | grep -ci 'CanaryMod.jar'`" ]; then
                echo "$SERVICE is running."
        else
                echo "$SERVICE is not running."
        fi
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文