gpt4 book ai didi

linux - 查看服务是否正在使用退出代码运行

转载 作者:太空宇宙 更新时间:2023-11-04 08:58:10 25 4
gpt4 key购买 nike

我已经制作了一个简单的脚本来检查服务是否正在运行并返回退出代码,但我无法让它工作。成功则退出 0,失败则退出 1。

#!/bin/bash

#Plugin for checking if the SSH service is running

SERVICE='ssh'

if [ ps aux | grep -v grep | grep $SERVICE > /dev/null ];
then
exit 0
else
exit 1
fi

最佳答案

if 语句可以简单地替换为

ps aux | grep -v grep | grep -q "$SERVICE"

如果 grep -q 成功(即匹配 ssh),管道的退出状态为 0,否则为 1。如果这是脚本的最后一行,则 shell 的退出状态将相同:无需显式调用 exit

关于linux - 查看服务是否正在使用退出代码运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26741690/

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